
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
typescript-parsec
Advanced tools
ts-parsec is a parser combinator library prepared for typescript. By using this library, you are able to create parsers very quickly using just a few lines of code. For document and more information, please checkout our repo on github, or our document page.
import { buildLexer, expectEOF, expectSingleResult, rule, Token } from 'typescript-parsec';
import { alt, apply, kmid, lrec_sc, seq, str, tok } from 'typescript-parsec';
enum TokenKind {
Number,
Add,
Sub,
Mul,
Div,
LParen,
RParen,
Space,
}
const lexer = buildLexer([
[true, /^\d+(\.\d+)?/g, TokenKind.Number],
[true, /^\+/g, TokenKind.Add],
[true, /^\-/g, TokenKind.Sub],
[true, /^\*/g, TokenKind.Mul],
[true, /^\//g, TokenKind.Div],
[true, /^\(/g, TokenKind.LParen],
[true, /^\)/g, TokenKind.RParen],
[false, /^\s+/g, TokenKind.Space]
]);
function applyNumber(value: Token<TokenKind.Number>): number {
return +value.text;
}
function applyUnary(value: [Token<TokenKind>, number]): number {
switch (value[0].text) {
case '+': return +value[1];
case '-': return -value[1];
default: throw new Error(`Unknown unary operator: ${value[0].text}`);
}
}
function applyBinary(first: number, second: [Token<TokenKind>, number]): number {
switch (second[0].text) {
case '+': return first + second[1];
case '-': return first - second[1];
case '*': return first * second[1];
case '/': return first / second[1];
default: throw new Error(`Unknown binary operator: ${second[0].text}`);
}
}
const TERM = rule<TokenKind, number>();
const FACTOR = rule<TokenKind, number>();
const EXP = rule<TokenKind, number>();
/*
TERM
= NUMBER
= ('+' | '-') TERM
= '(' EXP ')'
*/
TERM.setPattern(
alt(
apply(tok(TokenKind.Number), applyNumber),
apply(seq(alt(str('+'), str('-')), TERM), applyUnary),
kmid(str('('), EXP, str(')'))
)
);
/*
FACTOR
= TERM
= FACTOR ('*' | '/') TERM
*/
FACTOR.setPattern(
lrec_sc(TERM, seq(alt(str('*'), str('/')), TERM), applyBinary)
);
/*
EXP
= FACTOR
= EXP ('+' | '-') FACTOR
*/
EXP.setPattern(
lrec_sc(FACTOR, seq(alt(str('+'), str('-')), FACTOR), applyBinary)
);
function evaluate(expr: string): number {
return expectSingleResult(expectEOF(EXP.parse(lexer.parse(expr))));
}
console.log(evaluate('(1 + 2) * (3 + 4)'));
FAQs
TypeScript Parser Combinator
The npm package typescript-parsec receives a total of 15,814 weekly downloads. As such, typescript-parsec popularity was classified as popular.
We found that typescript-parsec 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.