
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
node-startup-manager
Advanced tools
Manage Startup tasks for OSX, Windows & Linux (Ubuntu & distros based off of Ubuntu) for Node.js apps.
$ npm install node-startup-manager --save
var startupManager = require('node-startup-manager');
var opts = {
path: 'C:/Program Files/RealVNC/VNC Server/vncserver.exe', // Path to app.
name: 'My_Awesome_App', // What your app shows up in startup list.
arguments: ['--dev', '--minimized'] // (optional) Arguments applyed to app on startup (Linux & Windows only for now).
};
startupManager.add(opts)
.then(function() {
console.log('App added to startup')
})
.catch(function(e) {
Console.log('Something went wrong; Perms?', e)
});
startupManager.remove('My_Awesome_App')
.then(function() {
console.log('App removed from startup')
})
.catch(function(e) {
Console.log('Something went wrong; Perms?', e)
});
startupManager.check('My_Awesome_App')
.then(function(status) {
console.log('App statup status:', status) // status returned as a boolen
});
If you're having any problem, please raise an issue on GitHub and I'll be happy to help.
The project is licensed under the GPL-3.0 license.
FAQs
Manage, Add & Remove Startup tasks on windows, mac & linux
The npm package node-startup-manager receives a total of 10 weekly downloads. As such, node-startup-manager popularity was classified as not popular.
We found that node-startup-manager 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.