Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aaronshaf/dem

Download an ECMAScript module and its relative dependencies
https://github.com/aaronshaf/dem

Last synced: about 2 months ago
JSON representation

Download an ECMAScript module and its relative dependencies

Awesome Lists containing this project

README

        

Download an ECMAScript module and its relative dependencies.

## Install

```bash
npm install -g @aaronshaf/dem
```

## Usage

```
dem [options]

Options:
-v, --version output the version number
-d, --destination directory to download to
-b, --bundle bundle and minify into one file
-h, --help output usage information
```

## Examples

### Simple download

```bash
dem https://unpkg.com/[email protected]/lit-html.js
```

This downloads:

```
lit-html.js
lib/default-template-processor.js
lib/parts.js
lib/directive.js
lib/dom.js
lib/part.js
lib/template-instance.js
lib/template.js
lib/template-result.js
lib/render.js
lib/template-factory.js
```

### Download to a specific directory

```bash
dem https://unpkg.com/[email protected]/lit-html.js --destination vendor
```

### Bundle and minify to a single file

```bash
dem https://unpkg.com/[email protected]/lit-html.js --bundle lit-html.min.js
```