Minify your HTML, CSS, and JS in a child process with caching. Suitable for long-running build systems on multicore computers.
var mnfy = require('mnfy/master')
mnfy.js('function hello(){ return "world" }').then(function (res) {
// res.code === function hello(){return"world"}
// res.map === ???
})
If you only require('mnfy')
, the same API will be returned,
but minification will no longer run in a separate process.
Minify JS. Options are passed to uglify-js
.
Minifies CSS. Options are passed to cssnano
.
Minifies HTML. Options are passed to html-minifer
.
Create a new child process.
Uses slave
.
By default, all minification occurs in a single child process.
Fork more processes to use more cores.