Gathering detailed insights and metrics for launchpad
Gathering detailed insights and metrics for launchpad
Gathering detailed insights and metrics for launchpad
Gathering detailed insights and metrics for launchpad
@cosmjs/launchpad
A client library for the Cosmos SDK 0.37 (cosmoshub-3), 0.38 and 0.39 (Launchpad)
@launchpad-ui/tokens
LaunchPad design tokens delivered as CSS custom properties, CommonJS modules, and ES modules.
@launchpad-ui/icons
An element that supplements content and represents an action or feature within LaunchDarkly.
@finastra/launchpad
Launchpad Web Component
npm install launchpad
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
47 Stars
251 Commits
28 Forks
45 Watchers
163 Branches
97 Contributors
Updated on Sep 28, 2024
Latest Version
0.8.1
Package Id
launchpad@0.8.1
Unpacked Size
59.26 kB
Size
17.06 kB
File Count
31
NPM Version
8.9.0
Node Version
18.2.0
Published on
Jan 25, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
You can launch browsers! With NodeJS!
The general API for any launcher (<type>
) looks like this:
1var launch = require('launchpad'); 2launch.<type>(configuration, function(error, launcher) { 3 launcher.browsers(function(error, browsers) { 4 // -> List of available browsers with version 5 }); 6 7 launcher(url, configuration, function(error, instance) { 8 instance // -> A browser instance 9 instance.id // -> unique instance id 10 instance.stop(callback) // -> Stop the instance 11 instance.status(callback) // -> Get status information about the instance 12 }); 13 14 launcher.<browsername>(url, function(error, instance) { 15 // Same as above 16 }); 17});
Local launchers look up all currently installed browsers (unless limited by LAUNCHPAD_BROWSERS - see below for details) and allow you to start new browser processes.
1// Launch a local browser 2launch.local(function(err, local) { 3 local.browsers(function(error, browsers) { 4 // -> List of all browsers found locally with version 5 }); 6 7 local.firefox('http://url', function(err, instance) { 8 // An instance is an event emitter 9 instance.on('stop', function() { 10 console.log('Terminated local firefox'); 11 }); 12 }); 13});
By default Launchpad looks up all installed browsers. To speed-up this process you can define the following env variables:
LAUNCHPAD_BROWSERS
- comma delimited list of browsers you want to use, e.g. LAUNCHPAD_BROWSERS=chrome,firefox,opera
. Other browsers will not be detected even if they are installed.LAUNCHPAD_<browser>
- specifies where given browser is installed so that Launchpad does not need to look for it, e.g.
LAUNCHPAD_CHROME=/usr/bin/chromium
The following browser names are recognized: chrome
, firefox
, safari
, ie
, edge
, opera
, canary
, aurora
, electron
, phantom
, nodeWebKit
.
Not all platforms support all browsers - see platform for details.
BrowserStack is a great cross-browser testing tool and offers API access to any account that is on a monthly plan. Launchpad allows you to start BrowserStack workers through its API like this:
1launch.browserstack({ 2 username : 'user', 3 password : 'password' 4 }, 5 function(err, browserstack) { 6 browserstack.browsers(function(error, browsers) { 7 // -> List of all Browserstack browsers 8 }); 9 10 browserstack.ie('http://url', function(err, instance) { 11 // Shut the instance down after 5 seconds 12 setTimeout(function() { 13 instance.stop(function (err) { 14 if(err) { 15 console.log(err); 16 } 17 console.log('Browser instance has stopped'); 18 }); 19 }, 5000); 20 }); 21});
Behind the scenes we have the node-browserstack module do all the work (API calls) for us.
9.8/10
Summary
Command injection in launchpad
Affected Versions
<= 0.7.5
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 4/11 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More