This repository was archived by the owner on Aug 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 117
npm compatibility #354
Comments
npm is supported by default. a.js: var a = require('underscore');
var b = require("jashkenas/backbone"); Then run:
|
I've tried this several times without any luck. Even if I have the dependencies listed in both |
no, npm is not supported yet |
when can we expect npm support? |
dupe of #193? |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey!
Thanks for this wonderful package manager!
Have a one question. A lot of commonJS modules wrap require("something") by factory functions. Let's look at some backbone.js plugins for example. Does it mean that i need to convert all of this modules to local files and change
module.exports = factory(require("underscore"), require("backbone"))
tomodule.exports = factory(require("jashkenas/underscore"), require("jashkenas/backbone"))
? Are there any workarounds here?The text was updated successfully, but these errors were encountered: