
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
parser-combinators
Advanced tools
A library of parser combinators, with which you can create your own parsers. The library will be continuously improved in time.
A library of parser combinators, with which you can create your own parsers.
strict mode onanybetweenexhaustmany (and zeroOrMany, oneOrMany, oneOrManyRed)mapoptionalregexsequencestring and string (case-insensitive)referexpectexpectErasesurelytokenlookaroundspacesspacesPluswspacesbool (and boolP)int (and intP)real (and realP)eofrecoverBySkippingCharsrecoverByAddingCharsEBNF)JSON)Combining many string parsers using an any parser uses parser fusion.
This means that a parser of the form e.g. any(str(...), ..., str()) is automatically converted into a search trie.
This drastically decreases the number of callbacks, and improves performance because all search strings are checked "at once" by going over the trie.
Nested any parsers are also supported, as well as stri parsers, so all of these undergo fusion:
any(str('QeQMTvqJuS'), str('IoOYSLNPlM'), str('SpFMUWpzHs'))
any(str('QeQMTvqJuS'), any(str('IoOYSLNPlM'), str('SpFMUWpzHs')))
any(str('QeQMTvqJuS'), stri('QeQMTvqJuS'), str('QeqmtabeacErEmTDUUIFcFpsAJhfwqXN'), str('SpFMUWpzHs'))
import { seq, str, any } from 'parser-combinators/parsers';
import { ParseText } from 'parser-combinators';
const parser = seq(str('a'), any(str('b'), str('c')));
const result = ParseText('ab', parser); // Will return ['a', 'b']
import { wspaces, str, realP, map } from 'parser-combinators/parsers';
import { ParseText } from 'parser-combinators';
const parser = map(
seq(wspaces, str('number:'), wspaces, realP, wspaces),
([,,, data]) => data
);
const result = ParseText(' number: 1.75 ', parser); // Will return 1.75
ref to expand the parser's possibilities:import { wspaces, str, realP, map } from 'parser-combinators/parsers';
import { ParseText } from 'parser-combinators';
const parser = ref(
map(
seq(wspaces, str('number:'), wspaces, realP, wspaces),
([,,, data]) => data
),
data => data > 1.5,
'The number must be over 1.5!'
);
const result = ParseText(' number: 1.25 ', parser); // Will throw a ParseError('The number must be over 1.5!')
import { spacesPlus, str } from 'parser-combinators/parsers';
import { ParseText } from 'parser-combinators';
const parser = seq(
str('Lazy fox jumps'), spacesPlus, str('over'), spacesPlus, str('a lazy dog')
);
try {
const result = ParseText('Lazy fox jumps under a lazy dog', parser);
} catch (e) {
console.error(e.getPrettyErrorMessage());
}
Will write:
Parse error, expected over at char 15 (line 1, col 16):
Lazy fox jumps under a lazy dog
---------------^
FAQs
A library of parser combinators, with which you can create your own parsers. The library will be continuously improved in time.
The npm package parser-combinators receives a total of 902 weekly downloads. As such, parser-combinators popularity was classified as not popular.
We found that parser-combinators demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.