npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

monmin

v2.1.11

Published

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

Downloads

21

Readme

#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

Key | Description | Default --- | --- | --- watch_dirs | Monitored directories | ['js', 'scss'] ignore | Ignored dirs & files array | [] disable_js | Ignore .js | false disable_scss | Ignore .scss | false out_dir | Output directories (filetype-specific) | {js: 'public/js', scss: 'public/css'} out_suffix | Output filetypes (filetype-specific) | {js: '.min.js', scss: '.css'} compress | Compress and minify output files boolean | true source_maps | Output source maps boolean | true log | Output log boolean | true log_pre | Output log prefix | 'monmin ||' error_log | Error log boolean | true error_pre | Error log prefix | 'monmin ERROR :' json | JSON 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;
// ...