Skip to content

ArcaneDigital/nodeship

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nodeship

Node wrapper for Codeship API

Codeship API Docs You can get your API key on your account page

Install

npm install nodeship

Examples

var NodeShip = require('nodeship');

var nodeShip = new NodeShip({
  apiKey : 'APIKEY'
});

nodeShip.projects(function(response){
    console.log(response);
});
nodeShip.project(114064, function(response){
    console.log(response);
});
nodeShip.builds(114064, function(response){
    console.log(response);
});
nodeShip.buildRestart(9655702, function(response){
    console.log(response);
});

About

Node wrapper for Codeship API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors