Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
launch-browser
Advanced tools
Detect the browser versions available on your system and launch them in an isolated profile for automated testing purposes. Support launching browsers headlessly (using Xvfb or with PhantomJS) and set the proxy configuration on the fly.
Based on browser-launcher3 but added sugar to automate browser detection, preferred browser selection and fallback to any supported browser.
npm install launch-browser
var launcher = require( 'launch-browser' );
// open browser at www.google.com
// use preferred browsers (in priority order): chrome, firefox, safari
// if no proferred browsers found, open any available browser
launcher('http://www.google.com', { browser: ['chrome', 'firefox', 'safari'] }, function(e, browser){
if(e) return console.log(e);
browser.on('stop', function(code){
console.log( 'Browser closed with exit code:', code );
});
})
See browser-launcher3 docs.
MIT
FAQs
Detect, launch and stop web browser from NodeJS
The npm package launch-browser receives a total of 104 weekly downloads. As such, launch-browser popularity was classified as not popular.
We found that launch-browser 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.