Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are quite a few modules which are listed on node's github page but are not published with the npm-registry. These modules can't be installed using npm.

What is the correct way to install these nodejs modules after cloning them from Git?

share|improve this question

2 Answers

up vote 10 down vote accepted

You need to download their source from the github. Find the main file and then include it in your main file.

An example of this can be found here > uploaing file in node.js

Usually you need to find the source and go through the package.json file. There you can find which is the main file. So that you can include that in your application.

To include example.js in your app. Copy it in your application folder and append this on the top of your main js file.

var moduleName = require("path/to/example.js")

share|improve this answer
Is it possible to import a script from an external URL (like var myscript = require("http://www.mywebsite.com/myscript.js"))? It looks like the require function doesn't work for external URLs. – Anderson Green Jan 1 at 23:00

Download the code from github into the node_modules directory

var moduleName = require("")

that should do it.

if the module has dependancies and has a package.json, open the module and enter npm install.

Hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.