Skip to content

Instantly share code, notes, and snippets.

@suzusime
Last active April 10, 2024 17:20
Show Gist options
  • Save suzusime/2e469d8bb2a1b19bfa6496de27e3a62b to your computer and use it in GitHub Desktop.
Save suzusime/2e469d8bb2a1b19bfa6496de27e3a62b to your computer and use it in GitHub Desktop.
Import All deno [email protected]
// #region import_std
import * as archive from "https://deno.land/[email protected]/archive/mod.ts";
import * as assert from "https://deno.land/[email protected]/assert/mod.ts";
import * as async from "https://deno.land/[email protected]/async/mod.ts";
import * as bytes from "https://deno.land/[email protected]/bytes/mod.ts";
import * as cli from "https://deno.land/[email protected]/cli/mod.ts";
import * as collections from "https://deno.land/[email protected]/collections/mod.ts";
import * as std_console from "https://deno.land/[email protected]/console/mod.ts";
import * as crypto from "https://deno.land/[email protected]/crypto/mod.ts";
import * as csv from "https://deno.land/[email protected]/csv/mod.ts";
import * as data_structures from "https://deno.land/[email protected]/data_structures/mod.ts";
import * as datetime from "https://deno.land/[email protected]/datetime/mod.ts";
import * as dotenv from "https://deno.land/[email protected]/dotenv/mod.ts";
import * as encoding_ascii85 from "https://deno.land/[email protected]/encoding/ascii85.ts";
import * as encoding_base32 from "https://deno.land/[email protected]/encoding/base32.ts";
import * as encoding_base58 from "https://deno.land/[email protected]/encoding/base58.ts";
import * as encoding_base64 from "https://deno.land/[email protected]/encoding/base64.ts";
import * as encoding_base64url from "https://deno.land/[email protected]/encoding/base64url.ts";
import * as encoding_hex from "https://deno.land/[email protected]/encoding/hex.ts";
import * as encoding_varint from "https://deno.land/[email protected]/encoding/varint.ts";
import * as expect from "https://deno.land/[email protected]/expect/mod.ts";
import * as flags from "https://deno.land/[email protected]/flags/mod.ts";
import * as fmt_bytes from "https://deno.land/[email protected]/fmt/bytes.ts";
import * as fmt_colors from "https://deno.land/[email protected]/fmt/colors.ts";
import * as fmt_duration from "https://deno.land/[email protected]/fmt/duration.ts";
import * as fmt_printf from "https://deno.land/[email protected]/fmt/printf.ts";
import * as front_matter from "https://deno.land/[email protected]/front_matter/mod.ts";
import * as fs from "https://deno.land/[email protected]/fs/mod.ts";
import * as html from "https://deno.land/[email protected]/html/mod.ts";
import * as http from "https://deno.land/[email protected]/http/mod.ts";
import * as ini from "https://deno.land/[email protected]/ini/mod.ts";
import * as io from "https://deno.land/[email protected]/io/mod.ts";
import * as json from "https://deno.land/[email protected]/json/mod.ts";
import * as jsonc from "https://deno.land/[email protected]/jsonc/mod.ts";
import * as log from "https://deno.land/[email protected]/log/mod.ts";
import * as media_types from "https://deno.land/[email protected]/media_types/mod.ts";
import * as msgpack from "https://deno.land/[email protected]/msgpack/mod.ts";
import * as net from "https://deno.land/[email protected]/net/mod.ts";
import * as path from "https://deno.land/[email protected]/path/mod.ts";
import * as permissions from "https://deno.land/[email protected]/permissions/mod.ts";
import * as regexp from "https://deno.land/[email protected]/regexp/mod.ts";
import * as semver from "https://deno.land/[email protected]/semver/mod.ts";
import * as streams from "https://deno.land/[email protected]/streams/mod.ts";
import * as testing_asserts from "https://deno.land/[email protected]/testing/asserts.ts";
import * as testing_bdd from "https://deno.land/[email protected]/testing/bdd.ts";
import * as testing_mock from "https://deno.land/[email protected]/testing/mock.ts";
import * as testing_snapshot from "https://deno.land/[email protected]/testing/snapshot.ts";
import * as testing_time from "https://deno.land/[email protected]/testing/time.ts";
import * as testing_types from "https://deno.land/[email protected]/testing/types.ts";
import * as text from "https://deno.land/[email protected]/text/mod.ts";
import * as toml from "https://deno.land/[email protected]/toml/mod.ts";
import * as ulid from "https://deno.land/[email protected]/ulid/mod.ts";
import * as url from "https://deno.land/[email protected]/url/mod.ts";
import * as uuid from "https://deno.land/[email protected]/uuid/mod.ts";
import * as webgpu from "https://deno.land/[email protected]/webgpu/mod.ts";
import * as yaml from "https://deno.land/[email protected]/yaml/mod.ts";
// #endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment