
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
momo-loader
Advanced tools
Checkout momo-language here. The fastest way to get up and running with WebAssembly.
This loader converts .momo
files to wasm
bytecode.
npm install --save-dev momo-loader wasm-loader
Edit webpack.config.js:
resolve: [
extensions: ['.js', '.momo']
],
...
loaders: [
{
test: /\.wasm$/,
loaders: ['wasm-loader', 'momo-loader']
}
]
You can refer to example.webpack.config.js
in this repo for an example.
Here we are going to use main.momo example, and save it to /momo/main.momo
:
int swap(int *c, int *d) {
int tmp = *c;
*c = *d;
*d = tmp;
return (0);
};
extern int main() {
int a = 10;
int b = 20;
int &rb = b;
rb = 33;
swap(&a, &rb);
return (a);
};
Later simply include the file in your JavaScript and instantiate the module:
import Main from '/momo/main';
const mainInstance = new Main();
console.log(mainInstance.exports.main()) // 33
That's it.
FAQs
.momo to .wasm loader for webpack
The npm package momo-loader receives a total of 2 weekly downloads. As such, momo-loader popularity was classified as not popular.
We found that momo-loader 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.