
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
grunt-anybar
Advanced tools
Grunt plugin to show the current build status in the AnyBar menu app.
This plugin requires Grunt ~0.4.5
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-anybar --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-anybar');
In your project's Gruntfile, add a section named anybar to the data object passed into grunt.initConfig().
grunt.initConfig({
anybar: {
start: {
options: {
// Task-specific options go here.
}
},
finish: {
options: {
// Task-specific options go here.
}
}
},
});
Last but not least, run the specific start and the finish task at the first and at the end of your grunt.registerTask() invocation:
grunt.registerTask('default', [ 'anybar:start', 'copy', 'sass:build', 'autoprefixer', 'concat', 'uglify', 'imagemin', 'jscs', 'phplint', 'anybar:finish' ]);
grunt.registerTask('dev', [ 'anybar:start', 'copy', 'connect', 'watch', 'anybar:finish' ]);
Type: Integer
Default value: 1738
An integer value that represents the AnyBar UDP port.
Type: String
One of AnyBar's status or color values:
whiteredorangeyellowgreencyanbluepurpleblackquestionexclamationIn the example below, with default options, the plugin uses the default UDP port 1738 to talk to AnyBar.
grunt.initConfig({
anybar: {
start: {
options: {
status: 'yellow'
}
},
finish: {
options: {
status: 'green'
}
}
},
});
In case you use a different port you can pass the port option:
grunt.initConfig({
anybar: {
start: {
options: {
status: 'yellow',
port: 1739
}
},
finish: {
options: {
status: 'green',
port: 1739
}
}
},
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
v0.2.1
FAQs
Grunt plugin to show the current build status in the AnyBar menu app.
The npm package grunt-anybar receives a total of 2 weekly downloads. As such, grunt-anybar popularity was classified as not popular.
We found that grunt-anybar 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.