
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
grunt-bower-event
Advanced tools
Now Grunt is talking your Bower language, listening for answers.
Now Grunt is talking your Bower language, listening for answers.
This plugin requires Grunt ~0.4.0
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-bower-event --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-bower-event');
This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade, but in case you can't please use v0.3.2.
Run this task with the grunt bower
command.
Task targets, files and options may be specified according to the grunt Configuring tasks guide.
Type: String
Default: current working directory of grunt
Bower working directory where your .bowerrc configuration is located.
Type: Object
Default: empty, Bower default config
Bower configuration according to the specification. Leave blank for Bower's default config.
Type: Array
Default: empty
Arguments that are passed to the bower command. Leave blank if command does not take arguments.
Example: ['bootstrap']
for command 'bower install'
.
Type: Object
Default: empty
Argument options that are passed to the bower command.
Example: {"force-latest": true}
for command bower install
Type: String
Default: bower.
Bower events are namespace-prefixed with this label when they are emitted through the grunt.event
API.
Example: listen for a log event with grunt.event.on('bower.log', function (data) { ... })
bower: {
install: {
}
}
The above configuration will run bower install
.
Just give the desired bower command as grunt target. The list of commands is available at Bower's API documentation
bower: {
customTarget: {
command: 'list'
}
}
The above configuration will run bower list
.
grunt.event.on('bower.end', function (data, command) {
console.log("received data from command: " + command);
console.log(data);
});
Events from bower commands are emitted through the grunt.event
API. The events are log
, error
,
end
, and prompt
. They are prefixed with the option given by eventPrefix
, e.g. "bower.end" in the
example above.
The callback takes two parameters: the data
object that the bower command produced and a string argument
command
, e.g. "install".
more samples to come..
FAQs
Now Grunt is talking your Bower language, listening for answers.
We found that grunt-bower-event 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.