shake-apps / node-box

Box API client for Node.JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Box API Node.JS Client

Install

npm install nodejs-box

Setup

First, you need to go through the OAuth2 process with Box.com, so that you can receive an access token. I recommend the box-passport module to help with this.

var Box = require('nodejs-box');

var box = new Box({
  access_token: 'YOUR_ACCESS_TOKEN_GOES_HERE',
  refreh_token: 'YOUR_REFRESH_TOKEN_GOES_HERE'
});

UPDATED README COMING SOON

About

Box API client for Node.JS


Languages

Language:JavaScript 100.0%