
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
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)mapoptionalregexsequencestringreferexpectexpectErasesurelyspacesspacesPluswspacesbool (and boolP)int (and intP)real (and realP)EBNF)JSON)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!')
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 572 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.