https://github.com/codfish/nodeschool
This project is just tracking my own progress in the different workshops that [nodeschool.io](http://nodeschool.io/) offers.
https://github.com/codfish/nodeschool
Last synced: 11 months ago
JSON representation
This project is just tracking my own progress in the different workshops that [nodeschool.io](http://nodeschool.io/) offers.
- Host: GitHub
- URL: https://github.com/codfish/nodeschool
- Owner: codfish
- Created: 2015-06-26T12:10:06.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-04T14:44:08.000Z (almost 11 years ago)
- Last Synced: 2025-06-25T02:02:50.903Z (12 months ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NodeSchool
This project is just tracking [my own progress](#my-workshop-progress) in the different workshops that [nodeschool.io](http://nodeschool.io/) offers. This is not really an application to be used but more of just a small node reference for myself (and others).
I first learned about NodeSchool from going to the [NY JavaScript Meetup](http://www.meetup.com/NY-JavaScript/events/222043177/) at the [MongoDB](https://www.mongodb.org/) office in midtown Manhattan.
### Getting Started
If you're just curious about NodeSchool in general and not necessarily interested in my versions of the excercises, go to http://nodeschool.io/ and get started by following the simple steps on their site.
If you're like me and just want to look at the code for reference, go right ahead.
If you're interested in running my examples, run the following in your terminal excercises:
```sh
# refer to nodeschool.io for all workshop installation instructions
# npm install may need sudo. You also may need to open a new terminal
# session in order to start using the learnyounode command.
$ npm install -g learnyounode
$ git clone git@github.com:codonnell822/nodeschool.git
```
Now, let's make the assumtion to want to run the "learnyounode" workshop and you wanted to run the first excercise, "HELLO WORLD":
```sh
$ cd nodeschool/learnyounode
# run `learnyounode list` to get a full list of excercises to choose from
$ learnyounode select HELLO WORLD
$ learnyounode verify 1_hello_world.js
```
That's it! The `learnyounode` program should have outputted the results of the first excersise, along with a pass or fail for my code and their version of the correct answer.
### My Workshop Progress
[learnyounode](learnyounode/) - "Learn the basics of node: asynchronous i/o, http."