Everything should be made as simple as possible, but not simpler.
Albert Einstein
From the beginning,
HTTP imports
have been a key feature of Deno. For years, this was the entire module system,
aimed at simplifying JavaScript development by using the web’s distributed
nature, unlike npm’s centralized registry.
For example, you can import the assertEquals() function from the standard
library like this:
import { assertEquals } from "https://deno.land/
[email protected]/assert/mod.ts";
assertEquals(1, 2);...