
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.
A grammar generator for syntax highlighters.
This project aims to be a superset of Chris Ainsley's Iro, a development tool designed to simplify the creation of syntax highlighters.
npm install irojs
Basic syntax:
iro compile <source> --targets=<targetlist>
Available targets:
textmate or tm
textmate.xml (default)textmate.jsonace
ace.js (default)ace.jsonast — outputs the rion astall or * — matches all targetsnone — only checks grammarUse <target>.* to match all extensions.
Example:
iro compile mygrammar.iro --targets=textmate,ace -o out/
Example:
import * as iro from "irojs";
// or
const iro = require("irojs");
const myGrammar = "...";
var result = iro.compile(myGrammar, { targets: ["textmate"] });
console.log(result.textmate);
The documentation is still a WIP. In the meanwhile, you can access the original docs at https://web.archive.org/web/20191007073218/https://eeyo.io/iro/documentation/index.html
pnpm build → builds the package.
pnpm build:swc → compiles the typescript source.
pnpm build:rion → compiles the rion grammar.
pnpm build:type → generates the type definition files.
FAQs
A grammar generator for syntax highlighters.
We found that irojs 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.