
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.
Browsers' console is so powerful and easy to debug compared to node command line. It can also work for Linux, to open on PC in the same LAN.
Besides, it can asynchonizely console.log data from Node.JS in browser base on Socket.IO.
So quickly use bonsole to see console.log results in browser!
npm i --save-dev bonsole
const bonsole = require('bonsole');
bonsole({a:1});
setTimeout(()=>{
bonsole({b:2})
}, 5000);
bonsole(
{a:1}, //something to console.log in browser
9094, //port, default is 9094
{app: 'firefox'} //options, set specified browser, like: {app: ['google chrome', '--incognito']}
);
The option is the same as open.
If you have issues or want to make some suggestions, welcome to contact me. It is so kind if you can give a star :star:!
FAQs
Asynchonize console.log Node.JS data in browsers
We found that bonsole 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.