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

https://github.com/bddjr/vite-plugin-singlefile-compression

Compress all assets and embeds them into dist/index.html, making it convenient to share as a single HTML file.
https://github.com/bddjr/vite-plugin-singlefile-compression

compress compression css frontend gzip inline js plugin sfa singlefile vite

Last synced: 2 months ago
JSON representation

Compress all assets and embeds them into dist/index.html, making it convenient to share as a single HTML file.

Awesome Lists containing this project

README

        

# vite plugin singlefile compression

Compress all assets and embeds them into `dist/index.html`, making it convenient to share as a single HTML file.

The recipient can open it directly in the browser without manually unzipping the file.

Using [DecompressionStream](https://developer.mozilla.org/docs/Web/API/DecompressionStream) + [base128-ascii](https://www.npmjs.com/package/base128-ascii).

## Setup

```
npm i vite-plugin-singlefile-compression
```

Then modify `vite.config.ts`, see [test/vite.config.ts](test/vite.config.ts)

```ts
// Import singleFileCompression
import singleFileCompression from 'vite-plugin-singlefile-compression'

export default defineConfig({
plugins: [
vue(),
vueDevTools(),
// Add singleFileCompression
singleFileCompression(),
],
```

Then modify [src/router/index.ts](test/src/router/index.ts#L5)

```ts
const router = createRouter({
// Use Hash History
history: createWebHashHistory(),
```

## Options

Example:

```ts
singleFileCompression({
rename: 'example.html'
}),
```

More info see [src/options.ts](src/options.ts)

```ts
export interface Options {
/**
* Rename index.html
*/
rename?: string;

/**
* https://github.com/terser/html-minifier-terser?tab=readme-ov-file#options-quick-reference
* @default defaultHtmlMinifierTerserOptions
*/
htmlMinifierTerser?: htmlMinifierOptions | boolean;

/**
* Try inline html used assets, if inlined or not used in JS.
* @default true
*/
tryInlineHtmlAssets?: boolean;

/**
* Remove inlined asset files.
* @default true
*/
removeInlinedAssetFiles?: boolean;

/**
* Try inline html icon, if icon is in public dir.
* @default true
*/
tryInlineHtmlPublicIcon?: boolean;

/**
* Remove inlined html icon files.
* @default true
*/
removeInlinedPublicIconFiles?: boolean;

/**
* Use Base128 to encode gzipped script.
* If false, use Base64.
* https://www.npmjs.com/package/base128-ascii
* @default true
*/
useBase128?: boolean;

/**
* Compress format.
* @default "deflate-raw"
*/
compressFormat?: compressFormat;
}
```

## Effect

https://bddjr.github.io/vite-plugin-singlefile-compression/

```
vite v6.0.11 building for production...
✓ 45 modules transformed.
rendering chunks (1)...

vite-plugin-singlefile-compression 2.0.1 building...

file:///D:/bddjr/Desktop/code/js/vite-plugin-singlefile-compression/test/dist/index.html
101.6 KiB -> 46.39 KiB

Finish.

dist/index.html 47.50 kB
✓ built in 732ms
```

![](effect.jpg)

## Clone

```
git clone https://github.com/bddjr/vite-plugin-singlefile-compression
cd vite-plugin-singlefile-compression
npm i
cd test
npm i
cd ..
npm run build
```

## License

Using [MIT License](LICENSE.txt).
[src/template](src/template) using [Unlicense](src/template/LICENSE.txt).

Adapted from [vite-plugin-singlefile](https://www.npmjs.com/package/vite-plugin-singlefile).