Thanks to visit codestin.com
Credit goes to github.com

Skip to content

MiniWeb is a full-website minifier that compresses integrated HTML, CSS, and JavaScript while preserving full functionality. It removes HTML classes that aren't referenced by the CSS and optimally shortens the remaining class names based on their frequency. MiniWeb handles HTML minification itself, while relying on YUI Compressor for CSS and JS …

License

Notifications You must be signed in to change notification settings

Mangara/miniweb

Repository files navigation

MiniWeb

MiniWeb is a full-website minifier that compresses integrated HTML, CSS, and JavaScript while preserving full functionality. It removes HTML classes that aren't referenced by the CSS and optimally shortens the remaining class names based on their frequency. MiniWeb handles HTML minification itself, while relying on YUI Compressor for CSS and JS minification. It is designed to be used both from the command-line and as a Java library.

Getting Started

From the command-line:

  1. Make sure you have a recent version of Java.
  2. Download the latest release.
  3. Run java -jar MiniWeb.jar [... html files ...].

As a library:

  1. Download the latest release.
  2. Add import miniweb.MiniWeb to your source code.
  3. Call the relevant MiniWeb.minify(...) method.

Configuration

  • MiniWeb has several command-line options. Run java -jar MiniWeb.jar --help to get an overview.

  • If you need to exclude specific class names from deletion or munging, add a file called miniweb.properties in a directory that contains one of your HTML files, and give it the following text:

      removeUnusedClasses = [true or false]
      dontRemove = [a space-separated list of class names]
    
      mungeClassNames = [true or false]
      dontMunge = [a space-separated list of class names]
    

    For example, the following prevents the class names selected and test from being shortened and prevents test from being removed:

      removeUnusedClasses = true
      dontRemove = test
    
      mungeClassNames = true
      dontMunge = test selected
    

Contribution guidelines

  • Bug reports and pull requests are welcome!
  • By submitting a pull request, you assert that you own the rights to any code you contribute and grant me an irrevocable right to publish this code under the current license of this project.

License

MiniWeb is © 2016-2017 Sander Verdonschot and is released under the Apache License, Version 2.0.

MiniWeb includes distributable versions of the following libraries and their dependencies:

About

MiniWeb is a full-website minifier that compresses integrated HTML, CSS, and JavaScript while preserving full functionality. It removes HTML classes that aren't referenced by the CSS and optimally shortens the remaining class names based on their frequency. MiniWeb handles HTML minification itself, while relying on YUI Compressor for CSS and JS …

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published