rendr-amdefine

0.0.3 • Public • Published

rendr-amdefine

AMDefine adapter for Rendr apps.

Allows to use relative to project's root paths to match require paths on the client when you're using Rendr+RequireJS.

Example

 
if (typeof define !== 'function') {
  var define = require('rendr-amdefine')(module);
}
 
define(function(require)
{
  // works both in node and on the client
  var deps = [
    'app/models/property',
    'app/collections/property_search'
  ];
 
  require(deps, function()
  {
    // ...
  });
 
});
 

To use within test frameworks (like jasmin) add following line to your test suite:

 
require('rendr-amdefine').withAutoBasePath();
 

It will set basePath as parent folder of the node_modules directory that contains rendr-amdefine.

For the case where it's not applicable you can directly manipulate basePath by using:

 
require('rendr-amdefine').basePath('/custom/path');
 

Package Sidebar

Install

npm i rendr-amdefine

Weekly Downloads

0

Version

0.0.3

License

MIT

Last publish

Collaborators

  • alexindigo