
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
good-enough-parser
Advanced tools
TypeScript library aiming to fill the gap between usage of ad-hoc regular expressions and generation of complete grammar descriptions.
While most programming languages provide parser tooling for the language they're written in, sometimes we need a uniform way to deal with the variety of languages from JavaScript (or TypeScript).
The library is divided into multiple levels of abstraction, from the lowest to the highest one:
lib/lexerConfigures the moo tokenizer for specific language features such as:
(), {}, [], etc'foo', "bar", """baz""", etc${foo}, {{bar}}, $(baz), etc#..., //..., etc/*...*/, (*...*), etcfoo, Bar, _baz123, etc\, the next one will be treated as its continuationRefer to the LexerConfig interface for more details.
Also check out our usage example for Python.
lib/parserThis layer is responsible for transforming the token sequence to the nested tree with the tokens as leafs. Internally, we're using functional zipper data structure to perform queries on the tree.
lib/queryTo understand parser-utils queries, it's useful to keep in mind the principle of how regular expressions work.
Each query represents sequence of adjacent tokens and tree elements.
For example, consider following query:
q.num('2').op('+').num('2').op('=').num('4');
It will match on the following fragments 2 + 2 = 4 or 2+2=4, but won't match on 2+2==4 nor 4=2+2.
Once brackets are defined, their inner contents will be wrapped into a tree node. It's possible to query tree nodes:
q.tree({
search: q.num('2').op('+').num('2'),
})
.op('=')
.num('4');
The above query will match these strings:
(2 + 2) = 4[2 + 2] = 4(1 + 2 + 2 - 1) = 4(1 + (2 + 2) - 1) = 4It won't match 2 + 2 = 4 because there is no any nesting.
Add link to CONTRIBUTING.md file that will explain how to get started developing for this package. This can be done once things stabilize enough for us to accept external contributions.
FAQs
Parse and query computer programs source code
The npm package good-enough-parser receives a total of 162,965 weekly downloads. As such, good-enough-parser popularity was classified as popular.
We found that good-enough-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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.