compactor

module
v0.0.15 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 1, 2022 License: MIT

README

Compactor - Frontend compression without pain

Compactor is a efficient alternative to generate fully compressed HTML projects, including all JS, CSS images and any other resource files.

It was primary designed to work with static websites where you don't have, don't need or don't want to use NodeJS and their crap system but you can also use it with your server side rendered website.

The ideia is very simple: you give the root folder of the project, and compactor builds the compressed version of the project for you with all possible optimizations. Start with no configuration needed.


Features

  • Written in Go Language in a single binary.
  • Provided as package module for Go.
  • Support files mapping and bundler.
  • Support ignore, include and exclude rules.
  • Optimizes HTML, CSS, SCSS, SASS, JavaScript, TypeScript, JSON and XML, ...
  • Compiles SCSS/SASS to CSS.
  • Compiles TypeScript to Javascript.
  • Generates source-map for Javascript and CSS files.
  • Automatically add hash ID to avoid caching in JS and CSS files: file.js -> file.485.js
  • Compress images in GIF, JPG, JPEG, PNG and SVG format.
  • Automatically create WEBP copy from JPG, JPEG and PNG as progressive enhancement.
  • Partials for HTML includes.
  • Watch mode for automation and live development.
  • CLI flags to fine tuning control.
  • Just works!

RoadMap (In Development)

  • Single output from multiple files for SASS and TypeScript (these languages does not include it out of the box, you have to use a 'index' file).
  • Single output and merge for JSON, XML e SVG.
  • Avif copy format from others images formats.
  • Less, Stylus and CoffeeScript compilers.
  • Support for VueJS, React, Svelte, ...
  • PostCSS compilation.
  • Font compression.
  • More!

CLI - Installation and Usage

For now, you first need to install dependencies:

sudo apt install -y nodejs npm libjpeg-progs

Then download the most recent binary file and make it executable:

REPOSITORY="https://github.com/mateussouzaweb/compactor/releases/download/latest"
sudo wget $REPOSITORY/compactor -O /usr/local/bin/compactor
sudo chmod +x /usr/local/bin/compactor

Done! To check command flags use:

compactor --help

To compress a project source into a destination, run:

compactor \
    --source /path/to/source/ \
    --destination /path/to/destination/

To watch live changes while developing a project, add the watch flag:

compactor \
    --watch \
    --source /path/to/source/ \
    --destination /path/to/destination/

File Mappings and Bundles

If you are using custom file mappings or package bundle features, please make sure to require the correct file or path in our HTML files and related code that require such files. You should always use the final file path.

For example, if you have 2 scripts (lib.js and events.js) that are merged and placed in scripts.js by compactor, set the reference of the file like bellow:

<script src="scripts.js"></script>

The same applies to CSS, JS files or any other file that use others files as reference:

/* CSS */
.bg {
    background-image: url('final-name.png')
}
// JS
required('bundled.js')

That is it! Enjoy!

TypeScript - Required Options

To use TypeScript compilation, you must provide the tsconfig.json file with at least the following options. Please make sure that the --source CLI option are the same as the baseUrl value inside the config file:

{
  "compilerOptions": {
    "baseUrl": "./src/",
    "isolatedModules": true
  }
}

Directories

Path Synopsis
pkg
css
gif
png
svg
xml

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL