
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Parse and execute LISP code in JavaScript.
For parsing the code, the parse function can be used.
This will return an array with all pieces.
parse('(+ 2 3)'); // ['+', 2, 3]
Executing code can be done with the exec function:
exec('(+ 3 (- 10 5))'); // 8
var exec = require('LISP.js').exec;
exec('(+ 1 2)');
You can install LISP.js with npm:
npm install LISP.js
or add LISP.js to your package.json dependencies:
"dependencies": {
"LISP.js": ">=0.0.6"
}
Building LISP.js for the browser is easy with wrapup.
make build
This command will create a JS file that will export a global LISP variable
with LISP.exec() and LISP.parse().
Alternatively you could use this to have global parse and exec functions.
wrup -r parse ./parse -r exec ./exec
FAQs
A simple LISP parser and executer.
We found that LISP.js 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

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.