require1k icon indicating copy to clipboard operation
require1k copied to clipboard

A minimal, and yet practically useful, CommonJS/Node.js `require` module loader for the browser in under 1000 bytes

Results 1 require1k issues
Sort by recently updated
recently updated
newest added

This sample in the readme does not works. ``` R(function (require, module, exports) { var index = require("./index"); exports.hello = "World!" }, function (err, exports) { if (err) { console.error(err.statusText);...