feedhenry / nodeschool

Node.js / Server side JavaScript development course curated by Red Hat Mobile
2 stars 7 forks source link

NODE SCHOOL by Red Hat Mobile

Join the chat at https://gitter.im/fhnodeschool/Lobby

This repository should server as resource for series of courses organized by team at Red Hat Mobile.

THIS IS A WORK IN PROGRESS

Resources:

In general, these would have been our main reference materials, through out the course.

End Goal

After taking this course, you should be able to create a small but usefull http service in NodeJS.

Syllabus

  1. Walkthrough JavaScript essentials, learn about NPM package manager and get familiar with Node.js ecosystem
  2. Understand asynchronous approach, events, emitters, listeners, callbacks, deferred execution and handling errors, core of Node.js programming model
  3. Building your own HTTP server, operations over files, streams, sockets and processes, overview of Express.js framework
  4. Tools and test frameworks, automation, debugging, unit and functional testing, quick look at debugger capabilities
  5. Working with databases and persistent storage, MongoDB, Mongoose and Redis
  6. Scaling an application, handling concurrency, clustered module and workers

Currently, we are aiming to have a 4 hour horskhop that would cover this.

Excercises from nodeschool.io

These workshops from nodeschool seem to be complementary to the course. They have been chosen based on their description only, further review might be required. We might use some of them whole-sale, or create our own workshop. Some of them might be left jus as an 'excercise for the reader'.

Beware, thet nodeschool workshops are mostly just a set of excercises, paired with a test-runer.

Core Javascript

Asynchronous programming

Maintainance

Libraries

Advanced

Slides/scratchpad

We have provided a dockerfile that contains ijs configured for node 6 against jupoter notebook. This is for quickly presenting the trickier parts of Java Script, with environment that is nicer, than the usuall nodejs repl.

cd notebooks
docker build -t ijs-0 .
docker run -v `pwd`:/home/jovyan/work -it --rm -p 8888:8888 ijs-0