Skip to content

Latest commit

 

History

History
24 lines (12 loc) · 1.04 KB

README.md

File metadata and controls

24 lines (12 loc) · 1.04 KB

node-workshop

Lets learn Node.js! Node.js is a JavaScript framework to create and run servers using JavaSccript syntax! That means we can make HTTP servers using JavaScript as the backend langauge - pretty awesome right?

There's a lot to learn in Node, but we're going to apply the fundamentals of Server/Client design to our workshops.

Remember our workshop on front-end JavaScript and DOM manipulation (todo.js)? We made simple front-end todo-list app using JavaScript.

We're going to adapt that todo.js app to have a Client (browser) and Server (Node.js).

  1. You should clone this repoistory if you have not done so already.

$ git clone https://github.com/dvcoders/node-workshop.git

  1. If you already worked on the Intro Node workshop from last week

$ cd node-workshop

$ git pull origin master

Your directory will now be up to date: we'll be working in the node-todo-list/ directory.