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

grunt-hug

v0.5.2

Published

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

Downloads

35

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.