grunt-hug

Concatinate your web application without worrying about the order of your files.

Usage no npm install needed!

<script type="module">
  import gruntHug from 'https://cdn.skypack.dev/grunt-hug';
</script>

README

grunt-hug Build Status

Hug makes developing web applications easier. You provide a directory, grunt generates one combined file, performing dependency resolution along the way. It's like concat, except you don't have to worry about the order of your files. It also keeps your namespaces clean by limiting the scope of variable declarations to file-level by wrapping each file in an anonymous self-executing function.

Why Hugging Will Make You Happy

  • You provide a root directory, grunt figures out how to concatinate your files to fulfill dependency constraints.
  • Your file-level variables declarations will actually be scoped at file-level (they won't leak to the environment).
  • It'll make your minified files smaller because it explicitly defines what the external api will be (and therefore anything not in the external api can be safely renamed to something shorted during minifaction).
  • You can require([relativePath]) other files to bring them into the current scope.
  • You can optionally generate one variable encompasing your entire API.

Target Audience

Hugging occurs at build-time, so an application which needs to load it's dependencies at runtime (lazy loading) won't benefit much from hugging -- you'll likely prefer the likes of RequireJS.

For frameworks or compiled applications, hugging is awesome. Your code will be clean, safe, and boiler-plate-free. As an added benefit, your unhugged code will work in nodejs applications so long as you're not using any browser-specific functions.

Importing libraries

You likely depend on external libraries. Here two approaches you can take to import import them into Hug:

  • Some libraries automatically bind to an exports variable if it exists (ex: jQuery, Underscore), these can be treated like any other file in your package by using require() to bring them in to scope.
  • Libraries which declare a var or introduce a global variable can be added to the header of the package. The header is prepended to the package and the entire package is wrapped in an anonymous function, so if all the library does is declare variables, those variables will become package-level variables.

Simple Example

Say I have two files:

// file1.js 
exports.word1 = "hello";
exports.word2 = "world";
// file2.js
var file1Exports = require('./file1.js');
console.log(file1Exports.word1 + " " + file1Exports.word2);

When these files run through hug, this will be the generated file:

(function(){
    var __module0 = (function(){
        var module = {};
        var exports = module.exports = {};
        
        exports.word1 = "hello";
        exports.word2 = "world";
        
        return module.exports || exports;
    }());
    
    var __module1 = (function(){
        var module = {};
        var exports = module.exports = {};
    
        var file1Exports = __module0;
        console.log(file1Exports.word1 + " " + file1Exports.word2);
        
        return module.exports || exports;
    }());
    
    return {"file1":__module0,"file2":__module1};
}());

Complex Example

Say I have the following file structure:

src/
    language/
        message/
                aSaying.js
        words.js
        speaker.js
    init.js
grunt.js

With the following file contents:

// src/init.js
var theMessage = require('language/message/aSaying.js').whatTheySay;
console.log(theMessage);
// src/language/message/aSaying.js
var theWord = require('../words.js').aWord;
var speaker = require('../speaker.js');

exports.whatTheySay = speaker(theWord);
// src/language/words.js
exports.aWord = "world";
// src/language/speaker.js
exports = function(anything){
    return "Hello, " + anything + "!";
};
// grunt.js
// ...other config stuff...
// in the object passed into initConfig:
hug: {
    dist: {
        src: 'src',
        dest: 'build/hi.js'
    }
}
// ...other config stuff...

When grunt is asked to hug this source tree, it'll concatinate the files in order of dependencies, and wrap each file in an anonymous function, and match up dependencies.

Running hi.js will output "Hello, world!" on the console, with no trace of the program ever running (nothing leaked to the global scope).

Usage

Inside your grunt.js file, in the object you pass to initConfig, add a section named hug. Inside this section, add 1 or more subsections for different hug tasks.

Parameters

src string

This defines the root directory of your source tree. Any JS file under this directory will become part of the generated file.

dest string

This defines what the path for the generated file should be. Grunt will automatically generate directories if they don't exit.

(optional) header file list

A list of files to prepend to the package. These files are not wrapped in anonymous functions, so any variables that are declared will be visible to the entire package. This is a good choice for utility functions or libraries which don't support exporting their variables.

(optional) exportsVariable string

This is an optional parameter. If provided, the generated file will produce a global variable with the given name holding the export tree. For example, if we had set exportsVariable: 'hugExample' for the example above, and ran the generated script, we would end up with a global variable like this:

console.log(hugExample);
// Output:
//	hugExample: {
//		language: {
//			message: {
//				aSaying: {
//				whatTheySay: 'Hello, world!'
//			},
//			words: {
//				aWord: "world"
//			},
//			speaker: function(anything){return "Hello, " + anything + "!";}
//		},
//		init: {}
//	}

Note that you can't use the exportsVariable in the source code, you have to use the require method to access the exports of other files.

Known Limitations and Possibilities

  • You cannot require a file outside of your source tree. For third-party libraries use grunt concat to concatinate them ahead of the hug generated file. You'll also likely want to minify the generated file.
  • You can set exportsVariable to exports and use the generated file in another source tree (which can then also be hugged) as a way to cleanly encapsulate your APIs.