2.1.11 • Published 6 years ago

monmin v2.1.11

Weekly downloads
66
License
MIT
Repository
github
Last release
6 years ago

#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;
// ...
2.1.11

6 years ago

2.1.10

6 years ago

2.1.9

6 years ago

2.1.8

7 years ago

2.1.7

7 years ago

2.1.6

7 years ago

2.1.5

7 years ago

2.1.4

7 years ago

2.1.3

7 years ago

2.1.2

7 years ago

2.1.1

7 years ago

2.1.0

7 years ago

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.5.0

7 years ago

1.4.5

7 years ago

1.4.4

7 years ago

1.4.3

7 years ago

1.4.2

7 years ago

1.4.1

7 years ago

1.3.5

7 years ago

1.3.4

7 years ago

1.3.2

8 years ago

1.3.1

8 years ago

1.3.0

8 years ago

1.2.14

8 years ago

1.2.13

8 years ago

1.2.12

8 years ago

1.2.11

8 years ago

1.2.10

8 years ago

1.2.9

8 years ago

1.2.8

8 years ago

1.2.7

8 years ago

1.2.6

8 years ago

1.2.5

8 years ago

1.2.4

8 years ago

1.2.3

8 years ago

1.2.2

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.2.5

8 years ago

0.2.4

8 years ago

0.2.3

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago