✨
Start with the NPM module
You can simply install dependence on your project from NPM:
$ npm install night-api
// ES6 (includes typings)
import { NightAPI } from 'night-api';
// CommonJS
const { NightAPI } = require('night-api');
To use the API, you need an authentication key that you can get by connecting or register to Night-API
const api = new NightAPI('YOUR_API_KEY');
Last modified 11mo ago