Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nescalante/taunus-wiring
browserify transform to generate taunus wiring
https://github.com/nescalante/taunus-wiring
Last synced: 20 days ago
JSON representation
browserify transform to generate taunus wiring
- Host: GitHub
- URL: https://github.com/nescalante/taunus-wiring
- Owner: nescalante
- License: mit
- Created: 2014-12-31T02:05:04.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-31T20:13:27.000Z (over 7 years ago)
- Last Synced: 2024-11-22T23:04:51.375Z (about 1 month ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Taunus-wiring
=============This module is a plugin for [browserify](http://browserify.org/) to generate the [Taunus](https://github.com/taunus/taunus) wiring object.
## usage
```js
var taunus = require('taunus');
var main = document.getElementsByTagName('main')[0];
var wiring = require('taunus-wiring')();taunus.mount(main, wiring);
````## on the command line
browserify -t taunus-wiring main.js -o bundle.js