Gathering detailed insights and metrics for karma-browserstack-launcher-nt
Gathering detailed insights and metrics for karma-browserstack-launcher-nt
Gathering detailed insights and metrics for karma-browserstack-launcher-nt
Gathering detailed insights and metrics for karma-browserstack-launcher-nt
A Karma plugin. Launch any browser on BrowserStack!
npm install karma-browserstack-launcher-nt
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
151 Stars
189 Commits
81 Forks
16 Watchers
35 Branches
48 Contributors
Updated on Jun 10, 2025
Latest Version
0.1.4-nt
Package Id
karma-browserstack-launcher-nt@0.1.4-nt
Size
4.19 kB
NPM Version
2.14.2
Node Version
0.12.7
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
3
1
4
Use any browser on BrowserStack!
The easiest way is to keep karma-browserstack-launcher
as a devDependency in your package.json
.
1{ 2 "devDependencies": { 3 "karma": "~0.10", 4 "karma-browserstack-launcher": "~0.1" 5 } 6}
You can also add it by this command:
1npm install karma-browserstack-launcher --save-dev
1// karma.conf.js 2module.exports = function(config) { 3 config.set({ 4 // global config of your BrowserStack account 5 browserStack: { 6 username: 'jamesbond', 7 accessKey: '007' 8 }, 9 10 // define browsers 11 customLaunchers: { 12 bs_firefox_mac: { 13 base: 'BrowserStack', 14 browser: 'firefox', 15 browser_version: '21.0', 16 os: 'OS X', 17 os_version: 'Mountain Lion' 18 }, 19 bs_iphone5: { 20 base: 'BrowserStack', 21 device: 'iPhone 5', 22 os: 'ios', 23 os_version: '6.0' 24 } 25 }, 26 27 browsers: ['bs_firefox_mac', 'bs_iphone5'] 28 }); 29};
username
your BS username (email), you can also use BROWSER_STACK_USERNAME
env variable.accessKey
your BS access key (password), you can also use BROWSER_STACK_ACCESS_KEY
env variable.startTunnel
do you wanna establish the BrowserStack tunnel ? (defaults to true
)retryLimit
how many times do you want to retry to capture the browser ? (defaults to 3
)captureTimeout
the browser capture timeout (defaults to 120
)timeout
the BS worker timeout (defaults to 300
build
the BS worker build name (optional)name
the BS worker name (optional)project
the BS worker project name (optional)device
name of the devicereal_mobile
allow browserstack to use a simulatorbrowser
name of the browserbrowser_version
version of the browseros
which platform ?os_version
version of the platformBrowserStack's REST API documentation explains how to retrieve a list of desired capabilities for browsers.
For an example project, check out Karma's e2e test.
For more information on Karma see the homepage.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 12/13 approved changesets -- score normalized to 9
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
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
Reason
38 existing vulnerabilities detected
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