Skip to content
/ notcms Public

NotCMS makes it easy to create a headless CMS, from Notion

License

Notifications You must be signed in to change notification settings

qqpann/notcms

Repository files navigation

NotCMS logo

NotCMS

Website · Dashboard · Templates · Blog

NotCMS makes it easy to create a CMS, from Notion.

npm package Downloads Issues

Getting Started

Install

npm install notcms

Usage

import { Client } from "notcms";

const nc = Client({ schema });

const [pages] = await nc.query.blog.list();
const [page] = await nc.query.blog.get(pages[0].id);