
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Line wrapper around the Walt WebAssembly Compiler. Intended to be used to build and package node modules utilizing WebAssembly/Walt. For browser integration use the webpack-loader.
npm install --save-dev walt-cli
In your package.json
{
"scripts": {
"walt": "walt-cli"
}
}
For one to one transforms point the cli at a single Walt file to get a single wasm result file.
npm run walt -- index.walt -o index.wasm
For walt programs which has imports use the wrap flag -w
. Wrap option will
link and compile all dependencies starting from the entry file. The result is a
self contained JavaScript module which exports a factory function. Use it to
generate the WebAssembly instance of your walt program.
npm run walt -- src/walt/entry.walt -o walt-program.js -w
Once compiled the module can be imported just like any other JS module
const makeProgram = require("./walt-program");
// Factory takes an imports object
makeProgram({
env: {
memory: new WebAssembly.Memory({ initial: 1 })
}
}).then(result => {
result.instance.exports.run();
});
Note on imports:
All walt imports starting with a relative path ./paht-to-something
is treated
as a walt module import. All absolute imports are left to you to provide and are
shared between all modules. Every module will get the same version of the import
object provided.
FAQs
CLI for Walt
The npm package walt-cli receives a total of 8 weekly downloads. As such, walt-cli popularity was classified as not popular.
We found that walt-cli 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
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.