Skip to content

Instantly share code, notes, and snippets.

@catalinpit
Created May 26, 2021 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catalinpit/1cd4f8973fa6604fe2c856a3c939ec87 to your computer and use it in GitHub Desktop.
Save catalinpit/1cd4f8973fa6604fe2c856a3c939ec87 to your computer and use it in GitHub Desktop.
src/notion/client.js
const { Client } = require('@notionhq/client');
require('dotenv').config();
const notion = new Client({
auth: process.env.NOTION_TOKEN
});
module.exports = {
notion
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment