deno
deno 2.9.6
Secure runtime for JavaScript and TypeScript
<rendered-html><p>Deno aims to be a productive and secure scripting environment for the modern programmer. Deno will always be distributed as a single executable. Given a URL to a Deno program, it is runnable with nothing more than the ~15 megabyte zipped executable. Deno explicitly takes on the role of both runtime and package manager. It uses a standard browser-compatible protocol for loading modules: URLs. Among other things, Deno is a great replacement for utility scripts that may have been historically written with bash or python.</p> </rendered-html>
https://deno.com/MIT License
main program: denoprograms: dx, deno, denort
Platforms (4)
aarch64-darwinaarch64-linuxriscv64-linuxx86_64-linux
Install
Copy into your configuration
NixOS (configuration.nix)
environment.systemPackages = with pkgs; [ deno ];
Ad-hoc shell
nix-shell -p deno
Flake (nix run)
nix run nixpkgs#deno