Deno Standalone Binaries

Deno Standalone Binaries

What is Deno ?

Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.

What is Standalone Binaries?

A standalone executable is a program that does not depend installation to run.

Building Deno Standalone Binaries

welcome.ts

console.log('Welcome to Deno🦕')

Compile & Build Deno Standalone Binaries

deno compile --unstable .\welcome.ts

Running Deno Standalone Binaries

.\welcome

Output: Welcome to Deno🦕

You can find all the code at my GitHub Repository. Drop a star if you find it useful.