Literally a text based adventure
-
node.js:
nvm install node
-
io.js:
nvm install iojs
#How to use
-
Clone this repository
-
run
npm install -g nodemon
(if you have problems with this step, usesudo
at the beginning of the command) -
run
cd /path/to/this/repo
-
run
npm install
-
run
grunt
to start the server -
open a browser and go to
localhost:3001
Any time you save changes to code, nodemon
will update the server.
Just refresh the web page, and you're good to go.
#Trouble Shooting
-bash: node: command not found
nvm means "node version manager" and it's usingiojs
somehow. runnvm use node
and you're good to go