JSPM

  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q52808F
  • License <not decided yet>

NotCMS makes it easy to build a CMS for your website.

Package Exports

  • notcms
  • notcms/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (notcms) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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