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

https://github.com/Gausix/Minix

A simple Rust-based minifier for JavaScript and CSS that efficiently reduces file size by removing unnecessary characters, whitespace, and comments without affecting functionality.
https://github.com/Gausix/Minix

cli minify-css minify-javascript rust terminal utils

Last synced: 3 months ago
JSON representation

A simple Rust-based minifier for JavaScript and CSS that efficiently reduces file size by removing unnecessary characters, whitespace, and comments without affecting functionality.

Awesome Lists containing this project

README

        

# Minix ![](https://img.shields.io/crates/v/minix?style=flat-square&logo=rust) ![](https://img.shields.io/crates/l/minix?style=flat-square) ![](https://img.shields.io/crates/d/minix?style=flat-square)

A straightforward minifier for JavaScript and CSS files, developed using Rust. This tool efficiently reduces the size of JS and CSS files by removing unnecessary characters, whitespace, and comments without affecting functionality. Utilizing Rust’s performance and safety features, it offers a fast and reliable solution for optimizing web assets, improving load times and overall website performance. Ideal for developers looking for a lightweight and effective way to minimize their codebase.

To Install using [crates.io](https://crates.io)

```shell
cargo install minix
```

### Basic example usage:

JS:

```shell
minix -i file.js -o file.min.js

# OR

minix -i js/*.js -o bundle.js

# OR, with --watch mode

minix -i js/*.js -o bundle.js -w
```

CSS:

```shell
minix -i file.css -o file.min.css

# OR

minix -i css/*.css -o bundle.css

# OR, with --watch mode

minix -i css/*.css -o bundle.css -w
```