
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.
nodemon-remote
Advanced tools
Drop-in replacement for nodemon with HTTP remote control and support for custom commands.
npm install --save nodemon-remote
# or
npx nodemon-remote <nodemon cli arguments>
.remoterc.jsmodule.exports = {
port: 2020,
access_key: "MY_SECRET_ACCESS_KEY",
commands: {
// Custom commands (arguments are always escaped)
checkout: { cmd: "git checkout '${branch}'" },
fetch: { cmd: "git fetch --all" },
// Define multiple commands
pullAndInstall: {
cmd: [
"git pull origin '${branch}'"
"npm ci"
]
},
},
};
curl -X POST \
http://<endpoint>:2020/
--header "Authorization: BEARER <MY_SECRET_ACCESS_KEY>" \
--data '{ "cmd": "checkout", "branch": "main" }'
curl -X POST \
http://<endpoint>:2020/
--header "Authorization: BEARER <MY_SECRET_ACCESS_KEY>" \
--data '{ "cmd": "nodemon:restart" }'
Available build-in commands:
nodemon:restart: Restart nodemonnodemon:reset: Resets all settingsTrigger commands based on a configurable label.
Example: Any PR that has the "preview" label assigned and that code is pushed to will get checked out in the remote container.
module.exports = {
// ...
webhook: {
label: "preview",
// Commands will run, if a PR with the label above is modified
cmd: [
"git fetch --all",
"git checkout '${ref}'",
"npm ci",
"nodemon:restart",
],
},
};
Got to webhook settings (https://github.com/<org>/<project>/settings/hooks/new)
Enter payload URL:
http://<endpoint>:2020/webhook
application/json and enter secret
Select Let me select individual events.
Enable Pull requests only

Hit Add Webhook
Assign label configured in config.webhook.label (e.g. "preview") to PR
FAQs
Simple remote control for node.js apps.
We found that nodemon-remote 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.