0xchasercat /
meow
meow is an adorable, all-in-one JavaScript/TypeScript runtime, blazing-fast package manager, deterministic test runner, and unified quality-assurance toolchain delivered as a single, self-contained Rust binary.
Loading repository data…
softwarearchitect817 / repository
Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.
Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.
Shell (Mac, Linux):
curl -fsSL https://deno.land/install.sh | sh
PowerShell (Windows):
iwr https://deno.land/install.ps1 -useb | iex
Homebrew (Mac):
brew install deno
Chocolatey (Windows):
choco install deno
Scoop (Windows):
scoop install deno
Build and install from source using Cargo:
cargo install deno --locked
See deno_install and releases for other options.
Try running a simple program:
deno run https://deno.land/std/examples/welcome.ts
Or a more complex one:
const listener = Deno.listen({ port: 8000 });
console.log("http://localhost:8000/");
for await (const conn of listener) {
serve(conn);
}
async function serve(conn: Deno.Conn) {
for await (const { respondWith } of Deno.serveHttp(conn)) {
respondWith(new Response("Hello world"));
}
}
You can find a deeper introduction, examples, and environment setup guides in the manual.
The complete API reference is available at the runtime documentation.
We appreciate your help!
To contribute, please read our contributing instructions.
Selected from shared topics, language and repository description—not editorial ratings.
0xchasercat /
meow is an adorable, all-in-one JavaScript/TypeScript runtime, blazing-fast package manager, deterministic test runner, and unified quality-assurance toolchain delivered as a single, self-contained Rust binary.
gc-victor /
SXO is a multi-runtime server-side JSX tool for Node.js, Bun, Deno, and Cloudflare Workers. It includes SXOUI, a framework-agnostic UI library inspired by shadcn/ui
forestlovewood /
WIP: PHP Deno is a Composer package that uses FFI to provide access to the Deno JavaScript and TypeScript engine.
PeterQLee /
This library provides algorithms to remove noise floor intensity patterns that are prevalent in Sentinel-1 cross-polarized images in EW mode, and to a lesser degree IW mode. This is provided in four ways: a command line interface, a Python interface, a Rust interface, and a C interface.
kiyov09 /
This is a simple image resizer/cropper API. Rust port of this deno blog: https://deno.com/blog/build-image-resizing-api
LayerDynamics /
Forge is an Electron-like desktop application framework using Rust and Deno. Apps are 100% TypeScript/JavaScript - no per-app Rust required. The runtime provides native system access through a secure, capability-based API.