Configure missing file for node.js v.0.8

I just selected node c wgetfrom from http://nodejs.org/dist/v0.8.11/node-v0.8.11-linux-x86.tar.gz

I ran sudo tar -zxf node-v0.8.11-linux-x86.tar.gzand then cd'ed in node-v0.8.11-linux-x86. However, Configurethere is no file , so when I start ./configure, I get an error no such file or directory. What am I doing wrong?

+5
source share
1 answer

You have downloaded the binary archive. With it, you should find node, npmand node-wafalready precompiled in a subdirectory bin.

If you want to build from source code, you'll want to download instead:

http://nodejs.org/dist/v0.8.11/node-v0.8.11.tar.gz

+12
source

All Articles