Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 435 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 435 Bytes

node-stormz

Simple node wrapper around Stormz's API.

Install

npm install stormz

Usage

var Stormz = require('stormz');

var stormz = new Stormz(token);
stormz.get('/v1/user/me').on('complete', function(data, response) {
    console.log('complete', response.statusCode, data);
});

License

(c) 2015 Stormz

This code is free to use under the terms of the MIT license.