|
|
|
|
|
by stewbrew
3614 days ago
|
|
You typically import it like: var foo = require('foo');
The lib's functions are accessed solely via the foo object. There is no interaction when different libs require different versions of a lib because the access the lib via different objects/modules. This actually is the one aspect of javascript I wish other languages would copy. |
|