0.0.12-development • Published 7 months ago

notcms v0.0.12-development

Weekly downloads
-
License
<not decided yet>
Repository
github
Last release
7 months ago

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);