# HG changeset patch # User tzara # Date 1341396687 0 # Node ID c92a73b81c806381d82beb5438c15eb25563e58b # Parent 7798c5b9105329ed249e9f9308cb37c73d5aeb52 installation instructions added diff -r 7798c5b91053 -r c92a73b81c80 INSTALL --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/INSTALL Wed Jul 04 10:11:27 2012 +0000 @@ -0,0 +1,51 @@ +////////////////////////////////// +// NODESCORE SERVER INSTALLATION +////////////////////////////////// + +// installation for server running +// debian stable or testing OS +// other systems see here: +// https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager + +////////////////////////////////// + +////////////////////////////////// +// get nodejs dependencies + +apt-get update +apt-get install git-core curl build-essential openssl libssl-dev + +////////////////////////////////// +// grab and compile from source + +mkdir -p /tmp/build/node && cd /tmp/build/node +git clone https://github.com/joyent/node.git . +git checkout v0.6.7 + +./configure --openssl-libpath=/usr/lib/ssl +make +make test +make install +node -v + +////////////////////////////////// +// get nodescore dependencies +// the node_modules dir should life in the require.path +// ~/ + +npm install socket.io +npm install node-static +npm install xmlhttprequest +npm install jsdom +npm install jQuery + +////////////////////////////////// +// get nodescore + + +////////////////////////////////// +//start server + + +cd nodescore +node nodescore.js