
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.
azk-parser
Advanced tools
azk-parser can read a json and generate an Azkfile.jsazk-parser can parse an Azkfile.js and generate jsonIt uses recast for parsing and generation of javascript.
Because parsing javascript returns an AST (not an CST), is not always easy to generate the right syntax tree. We can use the project bellow to test new ast compositions.
import Generator from '../../../src/generator';
import Systems from 'azk-parser/systems-list';
import System from 'azk-parser/system';
var systems = new Systems();
var system001 = new System({ name: 'system001' });
var system002 = new System({ name: 'system002' });
systems.add(system001);
systems.add(system002);
var generator = new Generator();
var code = generator.generate(systems.syntax);
/**
* Documentation: http://docs.azk.io/Azkfile.js
*/
// Adds the systems that shape your system
systems({
system001: {},
system002: {}
});
system001.addDependency('system002');
var generator = new Generator();
var code = generator.generate(system001.syntax);
system001: {
depends: ["system002"]
}
$ npm install
$ gulp
$ gulp test
$ gulp test-no-lint
$ npm run-script patch
FAQs
azk-parser
We found that azk-parser 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.