
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
simplified-browserstack
Advanced tools
A simplified interface for starting and stopping BrowserStack workers
A simplified interface for starting and stopping BrowserStack workers
npm install simplified-browserstack
var SimplifiedBrowserStack = require('simplified-browserStack');
var simplifiedBrowserStack = new SimplifiedBrowserStack({
username: 'USERNAME',
password: 'PASSWORD'
});
simplifiedBrowserStack.list(function(error, browsers) {
// browsers will be an array of available browser types
});
simplifiedBrowserStack.start({
// time to wait for workers to start running
queueTimeout: QUEUE_TIMEOUT,
// default URL for started workers
url: 'URL',
// default timeout for started workers
timeout: TIMEOUT,
// list of browser types to start, as returned from the list function
browsers: [{
os: 'OS',
browser: 'BROWSER',
version: 'VERSION',
// override the default URL
url: 'URL',
// override the default worker timeout
timeout: TIMEOUT
}, {
os: 'OS',
browser: 'BROWSER',
version: 'VERSION',
// override the default URL
url: 'URL',
// override the default worker timeout
timeout: TIMEOUT
}]
}, function(errors, workers) {
// the workers array will contain the started worker IDs
simplifiedBrowserStack.stop(function(errors) {
// the workers will have been stopped
// errors may be reported if a worker has already timed out
// but any running workers should have been stopped anyway
});
});
simplifiedBrowserStack.clean(function(errors) {
// Should stop any workers associated with the
// BrowserStack account
// useful for cleaning up orphaned workers
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using ./grunt.sh or .\grunt.bat.
Copyright (c) 2012 Peter Halliday
Licensed under the MIT license.
FAQs
A simplified interface for starting and stopping BrowserStack workers
We found that simplified-browserstack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.