Search⌘ K
AI Features

Using the Standard Library

Explore how to use Deno's versioned standard library to build practical programs like a colored terminal ls command. Understand the balance Deno maintains in its API design and learn to use formatting and filesystem modules to improve application functionality.

Deno’s behavior and the standard library

Deno’s standard library is currently not considered stable by the runtime; therefore, modules are separately versioned. When we’re writing, the standard library is version 0.83.0.

As we previously mentioned, Deno is very meticulous in what it adds to the ...