Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A utility to use with the input from terminal (process.stdin) while the application is running and emit events to handle internal server commands
A utility to use with the input from terminal (process.stdin) while the application is running and emit events to handle internal server commands
I found it very useful while developing for example a chat application, using the event emitall and passing the message to all the connected sockets. In order to test, or in a production environment to make a global announcement.
0.9.0
With npm
$ npm install consolr
After you run your node application this leaves you with a prompt, just type what you need and press enter. Simple example, running this code will allow you to exit the application typing exit.
exit
var consolr = require('consolr');
consolr.on('command', function(command){
console.log("User have been input some command handle it as you need");
if(command == 'exit'){
console.log('Closing the app');
process.exit();
}
});
Custom events, to create custom events just type :yourcustomevent and then some text if you need it. eg.
:exit Closing the app
var consolr = require('consolr');
consolr.on('exit', function(command){
console.log(command);
process.exit();
});
The second example does the same as the first one
Now accepts JSON code, for example (It also works on the predefined event)
:someevent {message: 'Testing JSON', key:'value'}
var consolr = require('consolr');
consolr.on('someevent', function(data){
console.log(data.message);
});
That way it will only show the message because it will pass a JSON object instead of only string
Want to contribute? Great!
MIT
FAQs
A utility to use with the input from terminal (process.stdin) while the application is running and emit events to handle internal server commands
We found that consolr 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.