Installation and usage
Installation
Installation of node-nozbe is as basic as almost every npm package.
# npm
npm i node-nozbe
# yarn
yarn add node-nozbe
Basic usage
Import the package to your project
const nozbe = require('node-nozbe');
nozbe object allows you to do partilular operations like adding new tasks to the Nozbe Inbox:
nozbe.addTask(clientId, accessToken, {
name: 'Create rich docs for node-nozbe',
});
Where
clientIdis the Application ID obtained during its registrationaccessTokenis the user's personal token (obtainable via Nozbe settings or with OAuth authentication).