
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.
run-anything
Advanced tools
🏃 configuration based application development for IOT
npm install run-anywhere
to get more information use
DEBUG=run-anythingbefore starting the process
programmatic usage of run-anything
const { Run } = require('run-anything');
const instance = new Run([{
state: {
on: 0,
color: '#efefef'
},
name: 'light',
commands: {
'on': function(socket) {
this.state.set('on', 1);
socket.write('turned light on');
},
'off': function(socket) {
this.state.set('on', 0);
socket.write('turned light off');
},
'color [color]': function(socket, color) {
this.state.set('color', color);
socket.write(`changed color of light to ${color}`)
}
}
}]);
instance.start((server) => {
console.log(`run-anything running at port ${instance.port}`)
process.on('exit', () => {
instance.close();
});
});
running run-anything as a binary
Usage: run-anything [options]
Command:
-h, --help, help outputs this screen and exists the process
Options:
-p, --port [port] overrides the randomized port for serving application
-c, --config [path] the config that is to be run
The config file for run-anything would look something like:
module.exports = {
state: {
on: 0,
color: '#efefef'
},
name: 'light',
commands: {
'on': function(socket) {
this.state.set('on', 1);
socket.write('turned light on');
},
'off': function(socket) {
this.state.set('on', 0);
socket.write('turned light off');
},
'color [color]': function(socket, color) {
this.state.set('color', color);
socket.write(`changed color of light to ${color}`)
}
}
};
What if building a IOT device could automatically generate a UI. Where you could ask a device for the functions and state of the device and it would respond with it.
FAQs
🏃 configuration based application development for IOT
We found that run-anything 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.