
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
spawn-auto-restart
Advanced tools
Important: Use it for dev only!
It executes a command through spawn
and restart the process in case any change has been detected or the child process has crashed.
Install via npm:
$ npm install spawn-auto-restart
require('spawn-auto-restart')({
proc: 'executable path',
watch: __dirname
});
To enable logs set an environment variable like this:
DEBUG=spawn-auto-restart
advanced args options
require('spawn-auto-restart')({
proc: {
command: 'executable path',
// ... any spawn argument
args: ['--dev'],
cwd: __dirname
},
watch: {
path: 'file, dir, glob, or array',
// ... any chokidar argument
ignored: /[\/\\]\./,
persistent: true
}
});
Auto restarting an electron app in development when changes have been applied in the main process.
node DEBUG=spawn-auto-restart restart.js
#!/usr/bin/env node
var join = require('path').join;
var electron = require('electron-prebuilt');
var main = join(__dirname, '../src/browser/main.js');
var watch = join(__dirname, '../src/browser');
require('spawn-auto-restart')({
proc: {
command: electron,
args: main
},
watch: watch
});
It is required to use editorconfig.
Copyright (c) 2015 Max Claus Nunes. This software is licensed under the MIT License.
FAQs
spawn-auto-restart
The npm package spawn-auto-restart receives a total of 8 weekly downloads. As such, spawn-auto-restart popularity was classified as not popular.
We found that spawn-auto-restart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.