npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@skynes/html-builder

v1.0.3

Published

Standalone HTML bundle builder for offline WebView

Readme

HTML Bundle Builder

Standalone project for building a single offline HTML bundle for WebView apps.

It inlines external CSS, JavaScript, and file-based resources into one output file.

Quick start (recommended: npx)

Run directly without local installation:

npx @skynes/html-builder --help

Build with explicit input/output:

npx @skynes/html-builder --input ./web/index.html --output ./dist/web.bundle.html

Build using config targets:

npx @skynes/html-builder --config ./build.config.json --target android
npx @skynes/html-builder --config ./build.config.json --target all

Use inside other repositories (example):

npx @skynes/html-builder --config ./html-bundle.config.json --target android

Available target values:

  • any key from targets in config (for example: android, windows)
  • all to build all targets
  • default (used when no --target is passed)

Local install (alternative)

Install dependencies:

npm install

Run build:

npm run build

Run with direct script call:

node build.js --input /absolute/or/relative/source.html --output /absolute/or/relative/bundle.html
node build.js --config ./build.config.json --target android

Show help:

npm run build:help

What the builder does

  1. Reads source HTML.
  2. Inlines external <link rel="stylesheet"> files into <style> tags.
  3. Inlines external <script src="..."> files.
  4. Rewrites url(...) inside CSS to data: URLs when possible.
  5. Optionally processes db_local object (if present) and converts file-like values to data: URLs.
  6. Applies safe HTML minification (outside script/style/pre/textarea blocks).
  7. Writes a final bundle file for offline WebView usage.

Notes

  • Relative file paths are resolved from the source HTML file directory.
  • HTTP/HTTPS assets are downloaded and embedded as data: URLs.
  • If db_local does not exist in your HTML scripts, the build still succeeds.

Recommended structure

Keep this builder as a standalone repository and store environment-specific paths in a local config file.

  1. Copy build.config.example.json to build.config.json.
  2. Adjust input and targets paths for your local projects (Android/Windows/etc.).
  3. Run build with config:
node build.js --config ./build.config.json --target android

This keeps the builder source independent while still producing bundles directly into your target repositories.

Feedback

If you find a bug or have an improvement suggestion, please open an issue.