New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

monmin

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

monmin

Monitors changes to SCSS, JS, and JSON files, and automatically compiles, minifies, and loads them

latest
Source
npmnpm
Version
2.1.11
Version published
Maintainers
1
Created
Source

#monmin

monmin -- made for use with ExpressJS -- monitors specified directories for changes to SCSS (SASS) and JS files, and automatically compiles and minifies them. It also monitors changes to JSON files, reloading app.js JSON objects when their hard-disk versions are modified, and saving new versions while archiving old ones when asked.

monmin detects SCSS @import dependencies and will re-compile parenting files when their children come back from school, modified. The same is done for JS files using a custom format (see below).

Installation

$ npm install --save monmin

Basic usage (app.js)

monmin is not a middleware. It runs strictly background on the server, does not deal with requests. It only needs a variable when handling JSON data.

require('monmin')();

Options

KeyDescriptionDefault
watch_dirsMonitored directories['js', 'scss']
ignoreIgnored dirs & files array[]
disable_jsIgnore .jsfalse
disable_scssIgnore .scssfalse
out_dirOutput directories (filetype-specific){js: 'public/js', scss: 'public/css'}
out_suffixOutput filetypes (filetype-specific){js: '.min.js', scss: '.css'}
compressCompress and minify output files booleantrue
source_mapsOutput source maps booleantrue
logOutput log booleantrue
log_preOutput log prefix`'monmin
error_logError log booleantrue
error_preError log prefix'monmin ERROR :'
jsonJSON index => file paths (See below){}

Example usage:

require('monmin')({
    disable_js: true        // do not monitor or compile .js files
  , log: false              // no output log
  , compress: false         // do not minify or compress files
});

JS imports

monmin relies on UglifyJS for Javascript compiling, however UglifyJS does not yet support canonical import 'file' functionality. Monmin allows for JS imports using the format //@import 'filepath'. The comment is necessary, otherwise an Uglify compilation error will be thrown. The .js extension is assumed and is therefore not necessary. Filepaths are relative to the importing file. Imported files are concatenated to the file's beginning, irrespective of the positioning of //@import 'file'.

Example usage (a .js file):

//@import 'key_data'
//@import 'lib/build'

// Your code below

JSON monitoring

monmin will monitor changes to JSON files, automatically re-loading the server-side variable when changes are made to the disk .json file, and saving changes to the disk .json file (while archiving the previous version) when server-side changes are made via the .save() method.

The JSON data is kept under the .data property.

Example usage:

var json = require('monmin')({
    json: {
      users: 'json/users.json'
    , camels: 'json/camels.json'
  }
});

var users = json.users;
console.log(users.data);    // outputs JSON object saved at json/users.json
users.data.list.push({
    username: 'John'
  , password: 'password123'
});
users.save();               // saves updated JSON data to disk and archives past version

var camels = json.camels;
// ...

Keywords

monitor

FAQs

Package last updated on 21 Apr 2018

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