
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
esbuild-plugin-peg
Advanced tools
> This plugin lets you import [PEGjs](https://pegjs.org/) and [Peggy](https://peggyjs.org/) files when bundling with [Esbuild](https://esbuild.github.io/)
This plugin lets you import PEGjs and Peggy files when bundling with Esbuild
npm install --save-dev esbuild-plugin-peg
or
bun add -D esbuild-plugin-peg
my.peggy
start = a:[0-9] "+" b:[0-9] { return a + b; }
main.js
import * as parser from './my.peggy'
console.log(parser.parse("1+2"))
build.js
const peg = require('esbuild-plugin-peg');
require('esbuild').build({
entryPoints: ['main.js'],
bundle: true,
outfile: 'out.js',
plugins: [peg()],
});
If you are using bun, you can activate the plugin as follows:
peg-loader.ts
import { plugin } from 'bun'
import peg from 'esbuild-plugin-peg/bun'
await plugin(peg())
You can then activate the loader per default in your project via
bunfig.toml
preload = "./peg-loader.ts"
An object containing configuration options may be passed into the plugin constructor peg
peg({
bare: true,
});
See Peggy API Documentation for available configuration options.
Contributions are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
> This plugin lets you import [PEGjs](https://pegjs.org/) and [Peggy](https://peggyjs.org/) files when bundling with [Esbuild](https://esbuild.github.io/)
We found that esbuild-plugin-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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.