This project is part of the @thi.ng/umbrella monorepo.
Local asset download for web apps, with automatic MIME type detection.
ALPHA - bleeding edge / work-in-progress
yarn add @thi.ng/dl-asset
// ES module
<script type="module" src="https://unpkg.com/@thi.ng/dl-asset?module" crossorigin></script>
// UMD
<script src="https://unpkg.com/@thi.ng/dl-asset/lib/index.umd.js" crossorigin></script>
Package sizes (gzipped, pre-treeshake): ESM: 426 bytes / CJS: 477 bytes / UMD: 592 bytes
Several demos in this repo's /examples directory are using this package.
A selection:
Screenshot | Description | Live demo | Source |
---|---|---|---|
Various hdom-canvas shape drawing examples & SVG conversion / export | Demo | Source | |
Parser grammar livecoding editor/playground & codegen | Demo | Source | |
Animated Voronoi diagram, cubic splines & SVG download | Demo | Source | |
Interactive grid generator, SVG generation & export, undo/redo support | Demo | Source | |
1D Wolfram automata with OBJ point cloud export | Demo | Source |
import { download } from "@thi.ng/dl-asset";
const src = "Hellö wörld!";
// mime type derived from file extension (.txt)
download("hello.txt", src, {
utf8: true,
expire: 1000
});
// with explicit MIME type string
download("hello.txt", src, {
mime: "text/plain",
utf8: true,
expire: 1000
});
...or using MIME type preset from @thi.ng/mime.
import { MIME_TYPES } from "@thi.ng/mime";
download("hello.txt", src, {
mime: MIME_TYPES.text,
utf8: true,
expire: 1000
});
Karsten Schmidt
© 2020 Karsten Schmidt // Apache Software License 2.0