Socket
Socket
Sign inDemoInstall

mnfy

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mnfy

minify HTML/CSS/JS in a child process with caching


Version published
Weekly downloads
2.2K
increased by15.77%
Maintainers
1
Weekly downloads
 
Created
Source

mnfy

NPM version Build status Test coverage Dependency Status License Downloads

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.

API

mnfy.js(string, [options]).then( res => )

Minify JS. Options are passed to uglify-js.

mnfy.css(string, [options]).then( res => )

Minifies CSS. Options are passed to cssnano.

mnfy.html(string, [options]).then( res => )

Minifies HTML. Options are passed to html-minifer.

mnfy.fork()

Create a new child process. Uses slave. By default, all minification occurs in a single child process. Fork more processes to use more cores.

Keywords

FAQs

Package last updated on 04 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc