A node.js JavaScript client for working with the BrowserStack API.
var BrowserStack = require( "browserstack" );
var client = BrowserStack.createClient({
username: "foo",
password: "p455w0rd!!1"
});
client.getBrowsers(function( error, browsers ) {
console.log( "The following browsers are avaialable for testing" );
console.log( browsers );
});Creates a new client instance. Must provide username and password.
Gets the list of avaialable browsers.
Creates a worker.
Terminates an active worker.
node-browserstack is licensed under the MIT license.