Skip to content

Latest commit

 

History

History

dl-asset

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

dl-asset

npm version npm downloads Twitter Follow

This project is part of the @thi.ng/umbrella monorepo.

About

Local asset download for web apps, with automatic MIME type detection.

Status

STABLE - used in production

Search or submit any issues for this package

Related packages

  • @thi.ng/mime - 650+ file extension to MIME type mappings, based on mime-db

Installation

yarn add @thi.ng/dl-asset

ES module import:

<script type="module" src="https://cdn.skypack.dev/@thi.ng/dl-asset"></script>

Skypack documentation

For Node.js REPL:

# with flag only for < v16
node --experimental-repl-await

> const dlAsset = await import("@thi.ng/dl-asset");

Package sizes (gzipped, pre-treeshake): ESM: 427 bytes

Dependencies

Usage examples

Several demos in this repo's /examples directory are using this package.

A selection:

Screenshot Description Live demo Source
Probabilistic color theme generator Demo Source
Color palette generation via dominant color extraction from uploaded images Demo Source
Various hdom-canvas shape drawing examples & SVG conversion / export Demo Source
Worker based, interactive Mandelbrot visualization 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

API

Generated API docs

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
});

Authors

Karsten Schmidt

If this project contributes to an academic publication, please cite it as:

@misc{thing-dl-asset,
  title = "@thi.ng/dl-asset",
  author = "Karsten Schmidt",
  note = "https://thi.ng/dl-asset",
  year = 2020
}

License

© 2020 - 2021 Karsten Schmidt // Apache Software License 2.0