Skip to content

sandcage/sandcage-api-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SandCage

Scrutinizer Code Quality Build Status

sandcage-api-nodejs is a Node.js library for interfacing with SandCage's API. The API documentation can be found at https://www.sandcage.com/docs/0.2/

Table of Contents

Requirements

Usage

var sandcage = new Sandcage({apiKey: '[YOUR SANDCAGE API KEY]'});
sandcage
  .listFiles({
    'key': '[YOUR SANDCAGE API KEY]'
  })
  .then(function(response) {
    console.log(response);
  })
  .catch(function(err) {
    console.error(err);
  });

or with callbacks

var sandcage = new SandCage('[YOUR SANDCAGE API KEY]');
sandcage.listFiles({}, function(err, response) {
  console.log(response);
})

Contributing

We are open to suggestions and code revisions, however there are some rules and limitations that you might want to consider first.

  • Code that you contribute will automatically be licensed under the Apache License Version 2.0.
  • Third party code will be reviewed, tested and possibly modified before being released.

These basic rules help ensure that this code remains Open Source and compatible with Apache 2.0 license. All contributions will be added to the changelog and appear in every release.

About

Node.js library to interface with SandCage's API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published