Friday 14 November 2014

Node School

At 2 of August me and my colleges went to a fantastic node.js event called Node School, co-organized by Nelson Neves, during a Geek Session at Faro Co-Working Space.
The event had 13 node.js challenges and the code was submitted and verified by a platform called learnyounode.


To make this workshop, it was needed to install node.js, npm and learnyounode:
$ sudo apt-get install nodejs
$ sudo apt-get install npm

To run node.js recent versions in command line, instead of: $ node <program_name> the command is $ nodejs <program_name> .

To fix this it was needed to create a symbolic link:
$ sudo ln -s /usr/bin/nodejs /usr/bin/node

After this initial steps, just run:
$ learnyounode

To verify the code of each exercise:
$ learnyounode verify <program_name.js>


After all exercises completed we received a: Much Win.



Check all solutions on my GitHub repository.