allows you to transform a universal module (no system dependencies) into a string
npm install require-bundleallows you to transform a universal module (no system dependencies) into a string
```
npm install require-bundle
`
var requireBundle = require('require-bundle');
requireBundle('string-saw').then(
source => console.log(source),
error => console.log(error.stack)
);
``