
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
A collection of JS module utilities written in Rust
The package is published to npm as a WebAssembly module. Install with:
$ npm install fmu
import { init, guessJsSyntax } from 'fmu'
// initialize wasm (MUST call this before any other APIs)
await init()
const code = `exports.foo = 'bar'`
console.log(await guessJsSyntax(code)) // "CJS"
Note: For Vite, you have to pass a custom URL to
init()
. For example:
import { init } from 'fmu' import wasmUrl from 'fmu/wasm?url' await init(wasmUrl)
See examples for usage n different setups.
Follow the official guide to install Rust. Also install wasm-pack to build Rust files into WebAssembly.
# Build wasm for dev (e.g. testing examples)
$ npm run dev
# Build wasm for publishing
$ npm run build
# Run unit and integration tests
$ cargo test
MIT
FAQs
Fast module utilities
We found that fmu 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.