modula

0.2.0 • Public • Published

Modula.js

Modula is dead simple library which helps with modular testing. I was needed it for Node.js's require replacement to use with Karma test runner.

Usage

  1. Define module:
# ... 
 
if modula?
  modula.export('lisn'Lisn)
else if module?
  module.exports = Lisn
else
  window.Lisn = Lisn
  1. Use it in specs:
Lisn = require('lisn')
 
# ... 
  1. That's it!

Installation

modula avaliable as npm and bower json.

API

modula

modula is a global namespace.

modula.export(name, exports)

Saves exports associated with passed module name.

modula.export('backbone'Backbone)

modula.require(name)

Returns module associated with name. Also avaliable as window.require.

Backbone = require('backbone')

If module is not found, modula will throw exception.

Readme

Keywords

none

Package Sidebar

Install

npm i modula

Weekly Downloads

1

Version

0.2.0

License

MIT

Last publish

Collaborators

  • kossnocorp