
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
grunt-parallel
Advanced tools
Run commands and tasks in parallel to speed up your build.
Install this grunt plugin next to your project's Gruntfile.js gruntfile with: npm install grunt-parallel --save-dev
Then add this line to your project's Gruntfile.js
gruntfile:
grunt.loadNpmTasks('grunt-parallel');
grunt.initConfig({
parallel: {
mix: {
tasks: [{
grunt: true,
args: ['fast']
}, {
grunt: true,
args: ['block']
}, {
cmd: 'pwd'
},{
grunt: true,
args: ['fast']
}]
},
shell: {
tasks: [{
cmd: 'whoami'
}]
},
grunt: {
options: {
grunt: true
},
tasks: ['fast', 'block', 'fast']
},
stream: {
options: {
stream: true
},
tasks: [ { cmd: 'tail', args: ['-f', '/var/log/system.log'] }]
}
}
});
grunt.initConfig({
parallel: {
assets: {
tasks: [{
grunt: true,
args: ['requirejs']
}, {
grunt: true,
args: ['compass']
},{
cmd: 'some-custom-shell-script.sh'
}]
}
}
});
Sometimes tasks don't end and consequently you don't want to wait to receive their output till they are done, because you would never see their output. Think of watching files or tailing logs. For this case you can set the stream option to true, and all of the tasks output will be logged to your console, this is letting the sub process inherit your stdio.
grunt.initConfig({
stream: {
options: {
stream: true
},
tasks: [{ cmd: 'tail', args: ['-f', '/var/log/system.log']}]
}
});
Since tail runs till you send it a shutdown signal, you would like to stream the output to your stdio.
If you are only going to delegate to other grunt tasks you can simply put grunt: true
in your tasks configuration and grunt-parallel will run them all using grunt.
grunt.initConfig({
parallel: {
assets: {
options: {
grunt: true
},
tasks: ['fast', 'block', 'fast']
}
}
});
One might target the task using grunt parallel:assets
. This would run compass, requirejs, and a custom shell script at the same time, each logging to your console when they are done.
Copyright (c) 2013 Merrick Christensen Licensed under the MIT license.
FAQs
Run tasks or commands in child processes.
The npm package grunt-parallel receives a total of 5,366 weekly downloads. As such, grunt-parallel popularity was classified as popular.
We found that grunt-parallel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.