melchiorjs

0.1.6 • Public • Published

MelchiorJS

build status dependencies bountysource

Tiny JavaScript in-browser module loader that implements Chainable Module Definition API.

Melchior is the first library that fully implements the Draft proposed by John Wu and brings to life "the most javascripty" way to configure modules and its dependencies for in-browser use.

Melchior does not have dependencies on any JavaScript framework. It is small with around 3KB when minified.

An alternative to AMD and RequireJS

The idea behind chainable modules solves several nasty AMD patterns like long lines of declaring dependencies and provides simplicity and readability with its' visual-friendly and clean syntax.

As CommonJS is more good for non-browser environments, chaining modules with requires fit perfectly for in-browser use cases.

Install

You can download all necessary Melchior files manually or install it with Bower:

bower install melchiorjs

Usage

Common Melchior module consists of the several parts and may look as follows:

// create module
melchiorjs.module('yourModule')
 
// define dependencies
.require('dependencyUno')
.require('dependencyDuo')
 
// define the module body
.body(function () {
    // `dependencyUno` and `dependencyDuo` are available
    dependencyUno.doSomething();
    dependencyDuo.doSomething();
 
    // return methods for other modules
    return {
        method: function () { ... },
        anotherMethod: function () { ... }
    };
});

In the real world the most likely you will want to use other third-party libs. Melchior also works as dependency script loader and provides similar config syntax as RequireJS does.

Firstly you will need to specify a data-main entry point for all of your modules:

<script src="/path/to/melchior.js" data-main="/path/to/entry.js"></script>

Inside entry.js call melchiorjs.config() with paths object inside that will include paths to the all libraries that you want to use as Melchior modules.

melchiorjs.config({
    paths: {
        // path key the same as global that lib exposes
        // saves from optional `shim` property on config
        'jQuery': 'path/to/jquery',
        'underscore': 'path/to/underscore',
        'myModule': 'path/to/myModule',
        'app': 'path/to/app'
    },
 
    // provide shim to non-melchior modules
    shim: {
        // declare the global returned by library
        underscore: {
            exports: '_'
        }
    }
});

For more detailed information on how config works check documentation.

From this point you will be able to require dependencies. Modules names and paths keys should be the same in order to loader work properly.

melchiorjs.module('app')
 
// provide any alias for module as second param
.require('jQuery', '$')
.require('underscore', 'fun')
.require('myModule')
 
.run(function () {
    $.get('/api/books').done(function (books) {
        var filtered = fun(books).sortBy('title');
        myModule.doSomethingWithBooks(filtered);
    });
});

This repo contains a special examples folder where several types of applications using Melchior are presented.

Getting started guide

Documentation

config(options)

Initialize dependency script loader that will asynchronously load the modules from provided paths. All modules are loaded via XHR and then injected as script elements already prepared to use with melchiorjs.

Options

  • paths - hash-map like object of scripts that will be loaded. Keys are module names and values are paths to the files.

  • shim - object where third-party libs and traditional "browser globals" scripts are configured to declare the dependencies and set the value returned by module. There are 2 options for every shim object: deps which is array of dependency names and exports - string representative of global variable exposed by script.

  • timeout - ms amount of time to wait before XHR'ed script timeouts, default 5000

Melchior handles not melchiorjs modules like third-party libs and frameworks by wrapping them into melchiorjs.module(pathKey) automatically. If such framework has dependencies and they are properly added to shim option Melchior will resolve shim's deps as requires to the lib.

melchiorjs.config({
    paths: {
        // path key will be turned to the module name 
        // e.g. melchiorjs.module('angular')
        'angular': '//ajax.googleapis.com/ajax/libs/angularjs/1.2.24/angular',
        'ngRoute': '//ajax.googleapis.com/ajax/libs/angularjs/1.2.24/angular-route',
        'ngResource': '//ajax.googleapis.com/ajax/libs/angularjs/1.2.24/angular-resource',
        'underscore': '//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore'
    },
 
    shim: {
        // `angular` will be inserted as required dependency
        // e.g. melchiorjs.module('ngRoute').require('angular').body(...)
        ngRoute: {
            deps: ['angular']
        },
        ngResource: {
            deps: ['angular']
        },
 
        // lib exports `_` variable as global
        // e.g. melchiorjs.module('underscore').body(function() { return _; })
        underscore: {
            exports: '_'
        }
    }
});

The good example could be an Angular.js app.

module(name)

Create a module. You should specify a unique module name.

melchiorjs.module('yourModule');

It is possible for module name to have the namespace. A valid namespace should consist of several words and be separated by dots (.). Melchior takes the value after last dot as module name.

// `utils` will be considered as module name
melchiorjs.module('core.utils');

require(moduleName, [alias])

Define module dependencies. Once a dependency is declared, it will be assigned to a variable in the scope of the module body with the same name as the module name. You can use method chaining to declare multiple dependencies.

melchiorjs.module('core.utils')
.require('core.bar')
.require('core.foo')
.body(function () {
    // `foo` and `bar` are available in the scope of the module
 
    return {...}
});

Dependencies can have aliases. Just put an alias String value as the second parameter.

melchiorjs.module('core.utils')
.require('core.foo', 'bar') // created `bar` alias
.body(function () {
    // `bar` is available here
 
    return {...}
});

body(fn)

Declares module functionality. The only argument is module function which will be executed when all dependencies will be ready.

melchiorjs.module('core.doubles')
.body(function () {
    var multiplier = 2;
 
    return function (num) {
        return num * multiplier;
    };
});

run(fn)

Programmatically it's the same as body but use-cases might be a bit different. Recommended to use as the entry point for other modules.

melchiorjs.module('core')
.require('core.doubles')
.run(function () {
    var twenty = doubles(10);
 
    // will output `20`
    console.log(twenty);
});

Browser support

Melchior was tested successfully and officially supports:

Chrome Firefox IE Opera Safari
1+ ✔ 2+ ✔ 8+ ✔ 10+ ✔ 3+ ✔

Contribution

Despite that Melchior is small and has very minimalistic API it may be not perfect yet. So if you found a bug or have an idea how to make it better do not hesitate to create an issue or even send a pull request.

References

Thanks John Wu for amazing idea and inspiration.

Library name is inspired by Evangelion's MAGI supercomputer. ✌️

Ireul Hacking Magi

Library also has landing page - http://labs.voronianski.com/melchior.js

License

MIT Licensed

Copyright (c) 2014 Dmitri Voronianski dmitri.voronianski@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i melchiorjs

Weekly Downloads

0

Version

0.1.6

License

MIT

Last publish

Collaborators

  • dmitri