This package has been deprecated

Author message:

this package is no longer maintained.

webmodules

0.2.0 • Public • Published

webmodules

browser commonjs runtime

NPM Version NPM Downloads NPM Downloads NPM Downloads Join the chat at https://gitter.im/attrs/webmodules

Install

$ npm i -g webmodules

Usage

$ mkdir myapp
cd myapp
$ npm install jquery
  • public/index.html
<!DOCTYPE html>
<html>
<head>
  <script type="text/commonjs" data-src="app.js"></script> 
  <script src="/node_modules/webmodules/runtime.js"></script> 
</head>
<body>
  <div id="content"></div>
</body>
</html>
  • public/app.js
var $ = require('jquery');
var sub = require('./sub.js');
 
$(document).ready(function($) {
    $('#content').html('hello, ' + sub.value);
});
  • public/sub.js
exports.value = 'world';
  • launch
$ wpm up ./public

Programmatically

$ npm i webmodules express
  • lib/index.js
var webmodules = require('webmodules');
var express = require('express');
 
var app = express()
.use('/node_modules', webmodules.router())
.use('/', express.static('public'))
.listen(9000);
$ node lib

Examples

License

Licensed under the MIT License. See LICENSE for the full license text.

Package Sidebar

Install

npm i webmodules

Weekly Downloads

11

Version

0.2.0

License

MIT

Last publish

Collaborators

  • admin.attrs
  • aquarela53
  • joje