SkillAgentSearch skills...

Hem

Bundler for Node/CommonJS/Web Apps

Install / Use

/learn @spine/Hem
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Introduction

Hem is a project for compiling CommonJS modules when building JavaScript web applications. You can think of Hem as Bundler for Node, or Stitch on steroids. Or it is kind of like Yeoman, tailored specifically for spine.js

This is rather awesome, as it means you don't need to faff around with coping around JavaScript files. jQuery can be a npm dependency, so can jQueryUI and all your custom components. Hem will resolve dependencies dynamically, bundling them together into one file to be served up. Upon deployment, you can serialize your application to disk and serve it statically.

Hem was primarily designed for developing Spine.js based Single Page Web Applications (SPA's), so a major role it fills is to tie up some of the other lose ends of a frontend development project - things like running tests, precompiling code, and preparing it for deployment. It can even help out in the API connection stuff if your app needs that.

Installation

npm install -g hem

or

npm install -g git://github.com/spine/hem.git

or ...fun trick.

git clone https://github.com/spine/hem.git
cd hem
npm link

the last approach is great if you want to customize hem for your own use, (...or for developing npm packages in general). Just fork and use you own path!

Dependencies

Hem has two types of dependency resolutions: Node modules and Stitch modules.

Node modules: Hem will recursively resolve any external Node modules your code references. This means that Spine, jQuery etc, can all be external Node modules - you don't have lots of libraries floating around your application. This also has the advantage of explicit versioning; you'll have much more control over external libraries.

Stitch modules: Hem will bundle up your whole application (without any static dependency analysis), automatically converting CoffeeScript (.coffee) and jQuery template (.tmpl) files. Hem doesn't use static analysis of your application to determine dependencies, as that's often not-viable considering the amount of dynamically loaded dependencies most applications use.

In a nutshell, Hem will make sure your application and all its dependencies are wrapped up in a single file, ready to be served to web browsers.

CommonJS

CommonJS modules are at the core of Hem, and are the format Hem aspects every module to adhere to. As well as ensuring your code is encapsulated and modular, CommonJS modules give you dependency management, scope isolation, and namespacing. They should be used in any JavaScript application that spans more than a few files.

To find out more about why CommonJS modules are a great solution to JavaScript dependency management, see the CommonJS guide. It's not that AMD pattern is bad by the way, just not the way hem went for now.

Example CommonJS

The format is remarkably straightforward, but is something you'll have to adhere to in every file to make it work. CommonJS uses explicit exporting; so to expose a property inside a module to other modules, you'll need to do something like this:

In app/controllers/users.coffee:

class Users extends Spine.Controller

Explicitly export the Users object

module.exports = Users

The format mandates that a module object will be available in every module. However, if you're targeting both the CommonJS format, and a normal environment, you can do a conditional export, checking that the module object exists.

module?.exports = Users

Requiring modules

Requiring other modules is just as straightforward; just use the require() function.

Users = require("controllers/users")

In Hem apps, all module paths are relative to the app folder - so don't require files relative to the specific module. CSS

Styling your app

Hem will also bundle up all your application's CSS into one file, ready to serve up to clients. CSS encapsulation and modularity is just as important as JavaScript de-coupling (and can get as equally messy if it's not done right); Hem goes some way to help you with this. To compile CSS, Hem uses an excellent library called Stylus. Stylus is mostly a superset of CSS, and the normal CSS syntax will work just fine if that's all you want.

However the awesome part of Stylus is the extra syntactical sugar it brings to CSS. Features like optional braces and colons, mixins, variables and significant whitespace all vastly improve your application's CSS, and decreases the amount of typing necessary. In a nutshell, Stylus is to CSS as CoffeeScript is to JavaScript.

Stylus files are indicated by the .styl extension, and are automatically compiled down to CSS by Hem. This all happens in the background, so you don't need to worry about it.

Also in the pipeline is the ability to bundle up CSS from Node modules.

Configuration

Hem has some good defaults (convention over configuration), but sometimes you'll need to change them, especially when adding libraries and dependencies.

For configuration, Hem uses a slug.coffee file, located in the root of your application. Using coffee syntax allows you to dynamically construct the final configuration object. An example configuration is show below...

config =

    # hem server and test settings
	hem:
        baseAppRoute: "/"
        tests:
            runner: "browser"

    # application settings
	application:
		defaults: "spine"
        css:
            src: 'css'
		js:
            src: 'app'
			libs: [
				'lib/jquery.js',
				'lib/jade_runtime.js'
			]
			modules: [
				"spine",
				"spine/lib/ajax",
				"spine/lib/route",
				"spine/lib/manager",
				"spine/lib/local"
			]
		test:
			after: "require('lib/setup')"

# export the configuration map for hem
module.exports.config = config

By setting the defaults value to spine Hem expects a certain directory structure. A main JavaScript/CoffeeScript file under app/index, a main CSS/Stylus file under css/index and a public directory to serve static assets from. If you're using Spine.app, these will all be generated for you. A typical spine app will have the following folder structure

├── app
│   ├── controllers
│   ├── index.coffee
│   ├── lib
│   ├── models
│   └── views
├── css
│   ├── index.styl
│   └── mixin.styl
├── lib
│   ├── jade_runtime.js
│   └── jquery.js
├── node_modules
│   ├── jade
│   ├── spine
│   ├── stylus
├── package.json
├── public
│   ├── application.css
│   ├── application.js
│   ├── favicon.ico
│   └── index.html
├── slug.coffee
└── test
    ├── public
    └── specs

The configuration file has several sections that control how the application is built and tested. For the hem section the following can be provided:

  • hem.baseAppRoute the url context from which hem will serve its files.

  • hem.tests.runner the way tests are executed, the default value is browser. If you have karma installed you can use karma as the value to fallback on the karma test runner.

  • hem.proxy allows you to specify proxy paths that will route requests to another server behind the scenes.

      "/proxy":
          "host": "www.yoursite.com"
          "path": "/proxy"
          "port": 8080
    

For the application settings the following can be used:

  • application.defaults currently the only valid value is spine

  • application.root the root folder of your project files, defaults to the root directory of the project folder (same folder that the slug.coffe file is found)

  • application.route another way to append a context for the app when hem is serving files. The default value is \\. This value is appended to the baseAppRoute value to create the final url path to the application.

  • application.static allows you to list the path to multiple folders for serving static content. The default spine values are listed below.

      "static":
          "/": "public",
          "/test": "test/public"
    
  • application.js.libs the libs folder is where hem looks to simply append files to the final application js file. If you list just a directory then all the js/coffee files in that directory are added. If you want the files added in a specific order then you can list the files individually.

      "libs": [
          "./lib/other.js"
      ]
    
  • application.js.src the src folder is where hem looks to find js files process and add to the final application css file. If you list just a directory then all the js/coffee files in that directory are added. Every file found in the src folder will be bundled with CommonJS and will need to be required for it to be used.

      "src": [
          "./app"
      ]
    
  • application.js.modules In addition, Hem lets you specify an array of npm/Node dependencies, to be included in your application. These dependencies will be statically analyzed, to recursively resolve additional dependencies, and then wrapped in the CommonJS module format, being served up with the rest of your application's JavaScript. For example, in a default generated Spine.app slug.json file, you'll find the following dependencies:

      "modules": [
          "spine",
          "spine/lib/ajax",
          "spine/lib/route",
          "spine/lib/manager",
          "spine/lib/local"
      ]
    
  • application.js.target the name of the single js file that is produced after all the src files are processed. If no value is provided the spine default is public/application.js

      "target": "public/application.js"
    
  • application.css.src the src folder is where hem looks to find css files process and add to the final application css file. If you list just a directory then all the css/jade files in that directory are added. If you want the files added in a specific order then you can list the files individually.

      "src": [
          "./css/other.css"
      ]
    
  • application.css.target the name of the single css file that is produced after all

View on GitHub
GitHub Stars281
CategoryDevelopment
Updated1mo ago
Forks71

Languages

JavaScript

Security Score

95/100

Audited on Feb 20, 2026

No findings