
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
A grunt multi task that generates parsers from PEG grammars.
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-peg --save-dev
One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-peg');
Run this task with the grunt peg command.
Task targets, files and options may be specified according to the grunt Configuring tasks guide.
Any specified option will be passed through directly to PEG.js, thus you can specify any option that PEG.js supports. See the PEG.js documentation for a list of supported options.
An additional option is supported:
Type: String | function
Default value: 'module.exports'
The variable to which the generated parser will be assigned in the output file.
If the exportVar is of type function, the function needs to return
the variable as a String. The function gets passed the src
variable to base the variable off.
In this example a PEG grammar as described in the file
grammar/example.peg is used to generate parser
grammar/example.js. The default export variable is used,
i.e. module.exports.
grunt.initConfig({
peg: {
example: {
src: "grammar/example.peg",
dest: "grammar/example.js"
}
}
})
In this example a PEG grammar as described in the file
grammar/example.peg is used to generate parser
grammar/example.js, the export variable being Example.parser.
grunt.initConfig({
peg: {
example : {
src: "grammar/example.peg",
dest: "grammar/example.js",
options: { exportVar: "Example.parser" }
}
}
})
exportVarIn this example a PEG grammar as described in the file
grammar/example.peg is used to generate parser
grammar/example.js, the export variable being defined via a function
and will result in example.
grunt.initConfig({
peg: {
example : {
src: "grammar/example.peg",
dest: "grammar/example.js",
options: { exportVar: function(src){ return path.basename(src[0], '.peg'); } }
}
}
})
In this example a PEG grammar as described in the file
grammar/example.peg is used to generate parser
grammar/example.js, the export variable being Example.parser.
Both the task-specific trackLineAndColumn and target-specific
cache options will be passed through to PEG.js.
grunt.initConfig({
peg: {
options: { trackLineAndColumn: true },
example : {
src: "grammar/example.peg",
dest: "grammar/example.js",
options: {
exportVar: "Example.parser",
cache: true
}
}
}
})
It is also possible to wrap the generated parser in an Angular factory.
grunt.initConfig({
peg: {
options: { trackLineAndColumn: true },
example : {
src: "grammar/example.peg",
dest: "grammar/example.js",
options: {
angular: {
module: "pegjs",
factory: "exampleParser"
}
}
}
}
})
It is also possible to wrap the generated parser in any code you want.
grunt.initConfig({
peg: {
options: { trackLineAndColumn: true },
example : {
src: "grammar/example.peg",
dest: "grammar/example.js",
options: {
wrapper: function (src, parser) {
return 'define("example", [], function () { return ' + parser + '; });';
}
}
}
}
})
If you want to pass plugins to PEG.js make sure that the plugin is installed and referenced by the module name. For example, for the pegjs-coffee-plugin one should first install the plugin
npm install --save-dev pegjs-coffee-plugin
and then configure the tasks with the module name.
grunt.initConfig({
peg: {
options: { trackLineAndColumn: true },
example : {
src: "grammar/example.peg",
dest: "grammar/example.js",
options: {
plugins: [ "pegjs-coffee-plugin" ]
}
}
}
})
As described in issue #6 sometimes the wrong PEG.js version
is downloaded by npm. The solution for now seems to be to call
npm cache clear.
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.
grunt peer dependencyexportVarFAQs
A grunt multi task that generates parsers from PEG grammars.
The npm package grunt-peg receives a total of 23,528 weekly downloads. As such, grunt-peg popularity was classified as popular.
We found that grunt-peg 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
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.