#inline #html #archive #web-page #download #tool

app inliners

Inline images, CSS, JavaScript and more into a single HTML web page. Quite fast.

1 unstable release

0.5.0 Mar 25, 2021

#50 in #web-page

MIT OR Unlicense

35KB
848 lines

inliners crates.io Build status

Inline images, CSS, JavaScript and more into a single HTML web page. Quite fast. It is mostly influenced by Remi's inliner.

WARNING: Works on my machine notice! This project is a result of playing with rayon and kuchiki so still not feature complete — but can be easily extended.

Features

  • Inline local stuff (i.e. for development or packaging) and remote (i.e. archiving)
  • Can load and inline assets in a very parallel fashion (use -j THREADS switch)
  • Handles scripts and styles (@import, <style /> or <tag style="...")
  • Encode images and favicons with Base64 (<img src="i.jpg"/>, div { background-image: url('img/i.png'); })
  • Minify output with minify-html (can do scripts and styles with esbuild but might not work well and as expected).

Install

Use releases page or install from crates.io with cargo:

# By default minifies only HTML:
$ cargo install inliners

# If you have Golang installed, allow JS/CSS minification:
$ cargo install inliners --features="esbuild"

# Or disable minification at all:
$ cargo install --no-default-features

# Then:
$ cd mysite
$ inline --no-img --minify index.html > index.min.html

# Or:
$ inline --no-js -o ~/archive/wiki/minipig.html https://en.wikipedia.org/wiki/Miniature_pig

Usage

inline 0.5.0
Inline images, CSS, JavaScript and more into a single HTML web page. Quite fast.

USAGE:
    inline [FLAGS] [OPTIONS] [input]

FLAGS:
    -h, --help       Prints help information
    -m, --minify     Minify HTML, CSS and JavaScript
    -C, --no-css     Do not process/embedd CSS stylesheets
    -I, --no-img     Do not process/embedd images
    -J, --no-js      Do not process/embedd JavaScript
    -q, --quiet      Silence all output
    -V, --version    Prints version information
    -v, --verbose    Verbose mode (-v, -vv, -vvv)

OPTIONS:
    -O, --output <output>      Output file, stdout if not present
    -j, --threads <threads>    Number of threads [default: 40]

ARGS:
    <input>    Input file or URL (index.html, https://example.com/path/)

Alternatives

License

MIT/Unlicensed

Dependencies

~14–27MB
~418K SLoC