Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
grunt-multi-forever
Advanced tools
Grunt task for starting and stopping an application as a daemon using forever with support for multiple applications.
forever task for grunt to start, stop and restart an application as a daemon.
This grunt task plugin has been updated to work with Grunt 0.4.0 release. The working version for Grunt 0.3.x has been tagged 0.2.2.
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-forever
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-forever');
Inside your grunt.js
file add a section named forever
. This section specifies the forever
task and provides the main application filepath option that will be run. The main filepath defaults to index.js
if not provided.
grunt-forever uses colon-separated arguments for the forever
task described in the grunt API. Supported name arguments are:
Attempts to start the main application file as a daemon if not currently running.
Attempts to stop the process started previously by forever
.
Attempts to restart the process previously started. If not currently running, starts a new one.
string
The option specifies the main application file that will be run under a daemon using forever
.
string
The command to execute, defaults to 'node'. Set this to 'coffee' to run coffeescript applications.
string
The directory log files are saved, defaults to 'forever'.
string
File stderr is logged into, defaults to 'err.log'.
string
File stdout is logged into, defaults to 'out.log'.
forever: {
server1: {
options: {
index: 'index.js',
logDir: 'logs'
}
},
server2: {
options: {
index: 'otherindex.js',
logDir: 'logs'
}
}
}
grunt forever:server1:start
grunt forever:server2:stop
grunt forever:server1:restart
FAQs
Grunt task for starting and stopping an application as a daemon using forever with support for multiple applications.
We found that grunt-multi-forever 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.