Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marionettejs/marionette.module
The (deprecated) Marionette.Module Class as a standalone library.
https://github.com/marionettejs/marionette.module
Last synced: about 2 months ago
JSON representation
The (deprecated) Marionette.Module Class as a standalone library.
- Host: GitHub
- URL: https://github.com/marionettejs/marionette.module
- Owner: marionettejs
- License: isc
- Created: 2015-02-04T16:58:07.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-04-29T22:26:05.000Z (over 4 years ago)
- Last Synced: 2024-11-08T05:42:51.572Z (2 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 2
- Watchers: 14
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# marionette.module
[![Build Status](https://travis-ci.org/marionettejs/marionette.module.svg)](https://travis-ci.org/marionettejs/marionette.module)### This Shim is a Work in Progress ###
------------
The (deprecated) Marionette.Module Class as a standalone library.
#### Shim for Marionette.Application
In Marionette 1.x and 2.x the `Application` Class has a `module` method. To shim this behavior for v3.x
```js
require('marionette.module').shim(Marionette);
```This will add Modules onto the application prototype.
#### Standalone Module Class
If you would like to use the standalone `Module` Class you can
```js
var Module = require('marionette.module');
```