
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.
browsertest
Advanced tools
Use this library if:
This library uses Selenium to run the tests in a browser. The results are fed to node.js and shown on the console.
Run npm install --save browsertest
Add this to your mocha HTML page:
<script src="node_modules/browsertest/store.js"></script>
<script>
// Replace mocha.run() with the StoreReporter that browsertest can use:
if (location.search.match(/cmd/))
var runner = mocha.reporter(StoreReporter).run()
else
mocha.run()
</script>
(A full example is in the test/index.html page.)
On the command line, run:
node node_modules/browsertest/browsertest.js "path/to/page.html?cmd"
This runs a HTTP server on port 8338 and tests http://localhost:8338/path/to/page.html?cmd.
Clone this repository. Then run npm run test to run test cases.
To release, change the "version" string in package.json to "x.x.x". Then:
git commit -m"Release version <x.x.x>"
git tag -a vx.x.x -m"one-line summary of features"
git push --follow-tags
npm publish
Automated unit tests are pending.
FAQs
Use browsertest to run mocha tests via selenium and print results
We found that browsertest 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.