Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

notion-api-js

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

notion-api-js

![npm](https://img.shields.io/npm/v/notion-api-js.svg) ![npm bundle size](https://img.shields.io/bundlephobia/min/notion-api-js.svg)

  • 2.2.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
increased by80%
Maintainers
1
Weekly downloads
 
Created
Source

Unofficial Notion.so Wrapper (WIP)

npm npm bundle size

This Repository contains an unofficial port of the Notion to Node.js. Important: It only works using Node.js in backend and not in a client-side environment.

IMPORTANT: You need a token to use the Notion API. You can obtain them by reading you local cookie. You can find instructions for that

Documentation

Installation

You can either use npm or yarn to install it:

npm i --save notion-api-js
yarn add notion-api-js

Usage

Creating an instance

To create an instance, simply pass an Object with your notion token_v2.

// ES Modules syntax
import Notion from "notion-api-js";

// require syntax
const Notion = require("notion-api-js").default;

const notion = new Notion({
  token: "YOUR_TOKEN_V2"
});

You can also provide options for the HTML parsing.

const notion = new Notion({
  token: "YOUR_TOKEN_V2",
  options: {
    colors: {
      orange: 'CSS COLOR HERE'
    },
    pageUrl: 'ABSOLUTE PAGE URL (e.g. /posts/'),
  }
});

Obtaining Credentials

Right now there is no official way how to access the Notion API, but there is a little work-around to get your credentials.

Prerequisites

You need to have an Account on Notion.so and need to be logged in.

Getting your credentials

Most of the modern web browsers support inspecting cookies visually using the browser's devtools. You can read how to do it in your browser here:

After you found the Notion.so cookie, look for token_v2. It is the necessary credential for the Notion instance. Simply copy them when you create the instance

Instance Options

The Options are optionally passed to the instance as a parameter. Those options contain information on how the HTML will be parsed and returned using the instance methods.

Colors (Object)

Contains definitions for the colors. If this option is omitted the default html colors like orange, pink and blue are used. You can change this behaviour by passing an object containing colour definitions. Example:

options: {
    colors: {
      red: 'tomato',
      blue: 'rgb(100, 149, 237)',
      purple: '#9933cc',
    }
}

Possible colors are:

  • red
  • brown
  • orange
  • yellow
  • teal
  • blue
  • purple
  • pink

PageUrl (String)

The PageUrl is the string passed to the <a> tag and is used to build the href of it. The id is inserted after the passed string. By default it looks like this /page?id=, which results into <a href="/page?id=SOME_ID">Hello World</a>

Instance Methods

getPages()

Gets all pages of the user by the userId passed to the Notion instance. All pages are parsed to HTML.

Example

notion.getPages().then(pages => {
  // Your Code here
});

getPageById(pageId)

Gets a Notion page by the pageId and returns it parsed to HTML.

Parameters:

ParameterTypeOpt/Required
pageIdstringRequired

Example

notion.getPageById("pageID").then(page => {
  // Your Code here
});

getPagesByIndexId(pageId)

Gets a Notion page by the given Id and all subpages of that page. Useful if you want to use a homepage.

Parameters:

ParameterTypeOpt/Required
pageIdstringRequired

Example

notion.getPagesByIndexId("pageID").then(page => {
  // Your Code here
});

getAllHTML() [WIP]

Gets the HTML for all pages.

notion.getAllHTML().then(html => {
  // Your Code here
});

Disclaimer

It's really WIP right now but I would highly appreciate if you would like to contribute to the project. Just fork this repo and create a PR 😄

Keywords

FAQs

Package last updated on 10 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc