Event-driven I/O server-side JavaScript environment based on V8. Includes API documentation, change-log, examples and announcements.

learn more… | top users | synonyms

2
votes
1answer
31 views

Packaging nodejs code, how do I prevent lintian from complaining about ./node_modules?

We ran into this problem while packaging some software written in nodejs. Because we can't package each and every dependency separately, we need to ship the node_modules/ directory along with the ...
0
votes
2answers
70 views

NPM wont work because of my wrong node version

The error is: Error: npm doesn't work with node v0.5.11-pre Required: node@>=0.6 But I'v just updated my node. That is confusing. I'v made some digging and it seems that I've installed node two ...
0
votes
0answers
10 views

Nodes.org install sur local src node

I am installing nodes the command sudo ./configure is ok but when I type next command menudo make I got an error g++ and 127 how could I resolve them to finish the nodes installation
0
votes
1answer
63 views

How to set-up Nginx correctly? “Welcome to nginx” is not displayed

I installed Nginx on my Ubuntu Server 12.10 using this instructions https://www.digitalocean.com/community/articles/how-to-install-nginx-on-ubuntu-12-04-lts-precise-pangolin , the Nginx was installed ...
0
votes
1answer
177 views

NVM Command Not Found Issue

Attempted to add to this question: NVM Command Not Found, however wasn't able to. After installing nvm im having the same issue, here is the log from terminal: Michael-iMac:~ michaels_imac$ curl ...
0
votes
1answer
103 views

node throw err; TypeError: undefined is not a function ubuntu 12.04

I have installed node v0.10.1 but now when I run bower install I got this error: bower extracting /tmp/bower-bootstrap-233205yl5tjk/index.zip ...
1
vote
0answers
147 views

how to install stormcloud from source?

I want to install the weather app Stormcloud from the source on GitHub (found here) https://github.com/consindo/stormcloud I downloaded the zip file and opened the README file inside it. It told me ...
0
votes
0answers
209 views

NVM Command Not Found [closed]

Trying to do this https://github.com/creationix/nvm, keep getting nvm command not found. What am I doing wrong? Edit: I got through installing it but when I ran "nvm install 0.8" I got "nvm command ...
0
votes
0answers
29 views

Problem with installing nodejs-waf in ubuntu [duplicate]

Trying to install nodejs-waf using command sudo apt-get install nodejs-devis giving the following error message: The following packages have unmet dependencies: nodejs-dev : Depends: nodejs (= ...
1
vote
3answers
366 views

npm breaks after updating nodejs to 0.10

I am on 12.04LTS. I updated my system today and in that process nodejs got updated. Now my npm has stopped working. For e.g: $ npm install express npm http GET ...
0
votes
1answer
28 views

which application is needed to read genesis rom files

I had downloaded node.js in my ubuntu 11.10. When i had unzipped and pretend to open README.md, it prompts me that ' there is no application installed for genesis rom files. Please help me by sharing ...
1
vote
1answer
122 views

Ways to deploy Node.js in a production environment?

What is the recommended way to deploy Node.js on Ubuntu 12.04 in a production environment? I saw this ppa but I don't know if is well maintained or if it will and if is a source in witch one can ...
1
vote
2answers
550 views

“No such file or directory” error while using npm

I installed node and npm using the instructions provided here I was able to use node successfully. However, as I attempt to install the "Formidable" node module, I get the following error: $npm ...
3
votes
1answer
226 views

node.js conflicts: /sbin/node vs /usr/bin/node

I have two Ubuntu 12.10 machines: machine A is a VMWare VM and machine B is and old Acer laptop. On both machines, I installed node using apt-get. However machine A installs the main binary as ...
5
votes
1answer
301 views

LESS CSS compilers returning blank

I am not even sure where to start debugging this. Months ago, I could happily compile my CSS from my LESS files. Today, I run either recess --compile test.less or lessc test.less and I just get a ...
1
vote
1answer
167 views

Checking version of nodejs returns nothing

I'm trying to install node js onto Ubuntu so that I can run AngularJS. I'm not sure if I've installed it before so I ran sudo-apt get install node and once that is done I then run node --version but ...
1
vote
2answers
103 views

Make a .deb for a Node.js application

How I make a .deb for a Node.js application that installs Node.js and its required npm modules on dpkg -i? Which is the place in the filesystem where I have to put this application? ...
0
votes
0answers
5 views

SSL development libraries, package dependency error [duplicate]

Possible Duplicate: Can’t install libssl-dev, dependency problem I have a fresh Ubuntu install that I wanted to use to learn NodeJs, however when I try to install libssl-dev I get this ...
1
vote
1answer
298 views

How do I source a shell script for Node Version Manager?

Hi and thanks for looking! I am new to Linux/Ubuntu, but I have set up an Ubuntu box on which to run Node.js. I have had moderate success, but now I need to be able to easily upgrade my version of ...
0
votes
0answers
118 views

Having trouble connecting to a running node.js app on Ubuntu 12.04 [closed]

I have a node.js that I'm trying to run locally on my machine (Ubuntu 12.04) but when I try to connect to the app it always times out. The same app works fine on a Ubuntu 11.04 VM I've been using ...