deno-embed
Embed files into deno applications by embedding them into a JSON file and importing natively into the deno app.
CLI: https://deno.land/x/embed/cli.ts
Mod: https://deno.land/x/embed/mod.ts
Usage
CLI
deno run --allow-read --allow-write \
https://deno.land/x/embed/cli.ts \
-i dir1 -i dir2 \
-o embed.json
Import
import embed from "./embed.json" assert { type: "json" };
console.log(embed["dir1/file1"].contents);
Import using Embed
import { Embed } from "https://deno.land/x/embed/mod.ts";
import embedObj from "./embed.json" assert { type: "json" };
const embed = Embed.from(embedObj);
// Read a file into a Uint8Array.
_ = embed.readFile("dir1/file1");
// Read a text file into a string.
_ = embed.readTextFile("dir1/file2");
// Walk a directory structure.
for (const entry of embed.walk("dir1")) {
// ...
}