Sha256: b7d82039cee005523c4782850c211191f555009f56a292e092f971cee23ce40e

Contents?: true

Size: 1.86 KB

Versions: 1

Compression:

Stored size: 1.86 KB

Contents

ROLI Sprockets CommonJS
=======================

This library adds CommonJS support to
[Sprockets](https://github.com/rails/sprockets).

A fork of [maccman's](https://github.com/maccman/sprockets-commonjs) library,
which is sadly no longer maintained.


## What is CommonJS?

The CommonJS module format is a way of encapsulating JavaScript libraries,
ensuring they have to explicitly require and export properties they use. In a
nutshell:

1. You require in files using `require()`:

```javascript
var asset = require('models/asset');
```

2. You export properties using `module.exports`:

```javascript
var asset = function(){ /* ... */ };
module.exports = Asset;
```


## This library

This library adds CommonJS support to Sprockets, so it can wrap up JavaScript
files as modules, and serve them appropriately. This is done by giving any JS
files you want as modules, the `.module.js` extension.

Sprockets will then wrap up the JS library when it's requested, with the
following:

```javascript
require.define({'library/name': function(exports, require, module){
  /* Your library */
}});
```

`require.define()` is defined inside `commonjs.js`, which you'll need to
include in the page before any modules are loaded.

```javascript
// Inside application.js
//
// require_tree .
```

One caveat to the approach this library takes, is that dependencies loaded
through `require()` will not be added to the dependency graph. This library
will not parse the AST tree for require calls. This decision has been made for
a variety of reasons, but it does mean you need to require files through both
CommonJS and Sprockets.

## Usage

1. Add `gem "roli-sprockets-commonjs"` to your `Gemfile`
1. Add `.module.js` to any JavaScript files you want as modules, i.e.
   `users.module.js`
1. Require all the modules, e.g.: `//= require_tree ./models`
1. Or, require individual modules, e.g.: `//= require users.module`

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
roli-sprockets-commonjs-0.0.10 README.md