nodejitsu-api
The nodejitsu-api
is a module that allows you to communicate with the our
RESTful API
Installation:
This module is published in NPM:
npm install nodejitsu-api --save
The --save
tells NPM to automatically add it to your package.json
file
API documentation
Before you can use the API you need to create a new API client. In this example
we are going to assume that foo
is your username and bar
is the password of
Nodejitsu account you want to control.
api.createClient(options)
The createClient
method generates a new API client. It accepts an options
argument which is used to configure the client.
options:
username
string The username of your Nodejitsu accountpassword
string The password or auth token of your accountremoteUri
string The Nodejitsu API resourcedebug
boolean Output debugging information to the consoleproxy
string HTTP proxy to connect overtimeout
number How long can a single API requests before we time it outignorePoweredBy
boolean Ignore the check for thex-powered-by
header
This options argument can either be an object with the properties specified above or a nconf object.
The remoteUri
argument is a required argument. Most API calls also require the
username
and password
to be specified. There a couple of API call where this
is not required, this is documented by the relevant API calls.
var api = ; // Construct a new client.var client = api;
client
The API calls are generally constructed as resource
and action
:
clientresourceaction'data' {if errthrow err;// Use the result};
The following API resources are exposes in the module:
- apps Manage your application instances.
- databases Manage your databases.
- logs Manage your application logs.
- snapshots Manage your application snapshots.
- users Manage your Nodejitsu account.
- users.auth
- users.create
- users.available
- users.view
- users.confirm
- users.forgot
- users.update
- users.destroy
client.app
client.apps.available
Checks if the available of the applications name and sub domain is currently taken in Nodejitsu.
Arguments
app
string The application namecallback
function
clientapp;
client.apps.list
List all the applications for the authenticated user.
Arguments
username
string The username, which is optional and will default to the configured usernamecallback
function The callback receives an array of your applications
clientapp;
client.apps.create
Create an application from the specified package.json
object.
Arguments
app
object The package.jsoncallback
function
var app = ; // requires your package.json as exampleclientapps;
client.apps.view
Views the application details for one specific application.
Arguments
app
string Name of the applicationcallback
function The callback receives your application details
clientapps;
client.apps.update
Updates the the application details.
Arguments
app
string Name of the applicationchanges
Object Properties that need to be updated for this applicationcallback
function
clientapps;
client.apps.start
Start the application.
Arguments
app
string Name of the applicationcallback
function
clientappsstart'my-application-name' { console;};
client.apps.stop
Stop the application.
Arguments
app
string Name of the applicationcallback
function
clientapps;
client.apps.restart
Restarts the application without changing a drone. Where stopping and starting an application could result in deployment on a different drone.
Arguments
app
string Name of the applicationcallback
function
clientapps;
client.apps.setDrones
Run the application on x
amount of drones on the Nodejitsu servers.
Arguments
app
string Name of the applicationdrones
number The amount of drones the application needs to run oncallback
function
clientapps;
client.apps.datacenter
Move the application to a new datacenter.
Arguments
app
string Name of the applicationcloud
object The datacenter configurationprovider
string Name of the cloud providerdatacenter
string Data center identifierdrones
number The amount of drones you want to start on this datacenter
callback
function
var cloud = provider: 'joyent' datacenter: 'eu-ams-1' drones: 6clientapps;
client.apps.destroy
Destroys the application.
Arguments
app
string Name of the applicationcallback
function
clientapps;
client.apps.endpoints
Get a list of all datacenter providers and datacenter identifiers. Please note: this method doesn't require any authentication.
Arguments
callback
function
clientapps;
client.databases
client.databases.create
Create a new database. These databases are created by third party providers you can find more information about each database provider in webops/databases
Arguments
type
string Database type (mongo, monghq, redis, redistogo, couch)name
string Name of the databasecallback
function
clientdatabases;
client.databases.get
Get the database information which contains the connection details
Arguments
name
string Name of the databasecallback
function
clientdatabases;
client.databases.list
Get the all databases and their information.
Arguments
username
string The username, which is optional and will default to the configured usernamecallback
function
clientdatabases;
client.databases.destroy
Destroy the specified database.
Arguments
name
string Name of the database you want to destroycallback
function
clientdatabases;
client.logs
client.logs.byApp
Fetches the logs for the given application.
Arguments
name
string Name of the applicationamount
number The amount logs to retrievecallback
function
clientlogs;
client.logs.byUser
Fetches the logs for every application for the specified user.
Arguments
username
string The username, which is optional and will default to the configured usernameamount
number The amount logs to retrievecallback
function
clientlogs;
client.snapshots
client.snapshots.list
Lists all snapshots for the given application
Arguments
name
string Name of the applicationcallback
function
clientsnapshots;
client.snapshots.create
Uploads a new snapshot for the application. This method assumes that you have a
properly packed .tgz
application on your system. The .tgz
should have the
same internal structure as the result of an npm pack
.
Arguments
name
string Name of the application that receives the snapshotsnapshotname
: string Name of the snapshotlocation
: string absolute path to the.tgz
snapshotcallback
function
clientsnapshots;
Please note that this method returns an event emitter which you can use to track
the progress of the upload. This event emitter emits and data
event with the
amount of data uploaded and emits the end
event once the upload been
completed.
client.snapshots.fetch
Fetches the snapshot from your application. Please note that these snapshots are
the actual state of the application that is ran on the drones, so these will
contain the node_modules
folder.
Arguments
name
string Name of the applicationsnapshotname
string Name of the snapshot that you want to downloadcallback
function
clientsnapshots;
This function returns the Stream that fetches the snapshot. You can use
this Stream to Stream.pipe
it to a file on your system. The callback would
only indicate a successful fetch.
client.snapshots.destroy
Destroy the snapshot.
Arguments
name
string Name of the applicationsnapshotname
string Name of the snapshot that you want to downloadcallback
function
clientsnapshots;
client.snapshots.activate
Activates a snapshot. This allows you to roll back to a old version when something goes wrong in your application.
Arguments
name
string Name of the applicationsnapshotname
string Name of the snapshot that you want to downloadcallback
function
clientsnapshots;
client.users
client.users.auth
Tests if the users login details are valid.
Arguments
callback
function
clientusers;
client.users.create
Register a new Nodejitsu account. Please note: this method doesn't require any authentication.
Arguments
account
object account detailsusername
string usernamepassowrd
string passwordemail
string e-mail address that receives the verification code
callback
function
var account = username: 'foo' password: 'bar' email: 'foo@example.com'; clientusers;
client.users.available
Test if the username is available. Please note: this method doesn't require any authentication.
Arguments
username
string usernamecallback
function
clientusers;
client.users.view
Retrieves the user details.
Arguments
username
string usernamecallback
function
clientusers;
client.users.confirm
Confirm the e-mail address of the user. Please note: this method doesn't require any authentication.
Arguments
user
object confirmation detailsusername
string the username that we are confirminginviteCode
string the inviteCode that was send to the users e-mail
callback
function
var user = username: 'foo' inviteCode: 'foo-bar-bnanan-trololol'; clientusers;
client.users.forgot
Request a password reset e-mail
Arguments
username
string usernamecallback
function
clientusers;
client.users.update
Updates the account information.
Arguments
username
string usernamechanges
Object Properties that need to be updated for this user.callback
function
clientusers;
client.users.destroy
Removes your account from the Nodejitsu platform. Use with extreme caution. This will also destroy all the applications that you are running and databases that you have created. Once you call this method, there is no way back and no option to undo this.
Arguments
username
string usernamecallback
function
clientusers;
Tests
All tests are written with vows and should be run with npm:
$ npm test
License
MIT.