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

https://github.com/txthinking/denobundle

Bundle assets into the binary with deno compile
https://github.com/txthinking/denobundle

assets binary bundle compile deno fake-file-system static

Last synced: 3 months ago
JSON representation

Bundle assets into the binary with deno compile

Awesome Lists containing this project

README

        

# denobundle

Bundle assets into the binary with deno compile

Install via [nami](https://github.com/txthinking/nami)

```
nami install denobundle
```

Usage

```
static/
└── hello.txt
```

```
denobundle static bundle.js
```

```
import readFileSync from './bundle.js';

var data = readFileSync("static/hello.txt"); // Uint8Array
```