node-codebase

1.0.0 • Public • Published

node-codebase (API wrapper for Node.js)

A NodeJS wrapper for the CodeBaseHQ API.

Install from NPM

npm install node-codebase

Example usage

var http = require('http'),
    Codebase = require('codebase');

var cb = new Codebase(
    'api url',
    'account/username:apikey'
);

http.createServer(function (req, res) {
    
    if (req.url !== '/') {
        res.end();
        return;
    }

    cb.activity(function (err, data) {
      if (err) {
        res.end('There was an error!' + data);
      }
  
      res.end(JSON.stringify(data));
    });

}).listen(8080);

console.log('Server running at http://localhost:8080/');

TODO

  • Write documentation
  • Finish "tickets.attachments.upload" method

Dependents (1)

Package Sidebar

Install

npm i node-codebase

Weekly Downloads

4

Version

1.0.0

License

none

Last publish

Collaborators

  • joshjensen