nodules icon indicating copy to clipboard operation
nodules copied to clipboard

Asynchronous URL-based CommonJS module loader for Node with automated dependency resolution and module reloading

Results 15 nodules issues
Sort by recently updated
recently updated
newest added

hi, I've written a test suit for nodule-utils/promise It covers everything, except for wait, post, can Promise.call, which currently have errors. I want to do more work on nodules, and...

Sometimes index.js is not in lib, but in root. Especially in your own packages ;-)

- http.createClient is deprecated. Use `http.request` instead. - nodules/lib/nodules-utils/promise.js:131 throw new Error("This deferred has already been resolved");

I'm getting an error on node v0.8.21 while trying to run it: ``` node /root/node_modules/nodules/lib/nodules.js server.js ``` The error: ``` Error: require.paths is removed. Use node_modules folders, or the NODE_PATH...

~/local/lib/node/nodules/example$ node ../lib/nodules.js (node) process.compile should not be used. Use require('vm').runInThisContext instead. Downloading http://github.com/kriszyp/commonjs-utils/zipball/master node.js:134 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: Array.prototype.toString is...

Hi! Since node 0.4.2 we can dramatically simplify the modules lookup, by following node_modules lookup strategy. If nodules honor vanilla "dependencies" hash in package.json, i think it would be a...

HI! Does nodules honor package's package.json, in particular, its `dependencies` key? I have a package which requires some stuff `A` for its internal purposes. This stuff is mentioned in its...

When sitting behind a proxy and trying to fetch `http://github.com/A/B/zipball/master` there appear several redirects: `http://github.com/A/B/zipball/master` ---> `https://github.com/A/B/zipball/master` ---> `https://nodeload.github.com/A/B/zipball/master`. Here node's `createClient` fails since the certificate is issued for `github.com`,...

So I've been using the require(""+"foo") trick to bypass static analysis -- but it blows up nodules even on platforms with a blocking require. I'd like to avoid require.ensure'ing everything...

Hi! At https://gist.github.com/700409 I tried to make nodules use local git client (if installed) prior to downloading zipball/master. I can simplify the development process. Please, take a look --Vladimir