JSPM

node-bufferapp

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q21920F
  • License MIT

A Nodejs SDK for Buffer APIs. http://bufferapp.com/

Package Exports

  • node-bufferapp

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-bufferapp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

node-bufferapp

Node.js SDK for Buffer APIs http://bufferapp.com

Installation

npm install node-bufferapp

Usage

  • First, create a Buffer Client
var BufferApp = require('node-bufferapp');
var bufferapp = new BufferApp({
    clientID : YOUR_APP_CLIENT_ID,
    clientSecret : YOUR_APP_CLIENT_SECRET,
    callbackURL : YOUR_APP_CALLBACK_URL
});
  • Then, create a new user by logging him in
bufferapp.login(function(user){
  console.log(user.profile);
});

The complete API documentation is in docs