
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.
A power node-repl which will auto reload runtime if required file is modified, inspired by ipython autoreload feature.
liverepl is a node-repl which will autoreload files when files are modified, inspired by ipython's autoreload feature.
using npm:
npm install -g liverepl
And liverepl will be installed globally to your system path.
cd your_node_project
liverepl
liverepl> a = require('./module_a');
liverepl> a.some_method()
liverepl> a.some_method() // rerun directly when you modify some_method code.
liverepl> await a.some_async_or_promise_method();
In liverepl, you can require module_a and call it's method.
When you modify module_a's code and save, you can rerun method without restart livereload.
If module_a.some_method dependent on module_b and you modify module_b's code and save, you can rerun module_a.some_method without restart livereload.
If you want to use 'await' in liverepl, your node version should be above node^10.
you can use config file to init your runtime. create config file in your project dir:
touch your_node_project/liverepl.config.js
liverepl.config.js example:
module.exports = {
installs: {
prefix_a_: './a.js',
prefex_b_: './m'
},
constants: {
constant_name: 'aaaaa',
},
ignores: [
'./b'
],
};
FAQs
A power node-repl which will auto reload runtime if required file is modified, inspired by ipython autoreload feature.
We found that liverepl 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.