diff --git a/README.md b/README.md index cc57895ea..8180bf789 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ > Please help us improve and share your feedback! If you find better tutorials -or links, please share them by [opening a pull request](https://github.com/HackYourFuture/Node.js/pulls). +or links, please share them by [opening a pull request](https://github.com/SocialHackersAcademy/Node.js/pulls). -# HackYourFuture - Node.js +# SocialHackersAcademy - Node.js -This 3-week HYF Module is about Node.js. We can think of Node.js as "Javascript +This 3-week SHA Module is about Node.js. We can think of Node.js as "Javascript not running in a browser". This is what we mean by "backend", as in "backend developer". @@ -23,7 +23,7 @@ And you can start with the [Node.js Tutorial for Beginners](https://www.youtube. ## Promises' refresher -Read Jim's [summary of promises](https://github.com/remarcmij/JavaScript/blob/master/fundamentals/promises.md) +Read Jim's [summary of promises](https://github.com/SocialHackersCodeSchool/fundamentals/blob/master/fundamentals/promises.md) from JavaScript module and [Promises, async/await](http://javascript.info/async). ## Node.js Setup @@ -38,12 +38,14 @@ instructions depending on your operating system: ## Pre-requisites -We will build on knowledge from the following HYF (sub)modules. If we feel we +We will build on knowledge from the following (sub)modules. If we feel we have gaps we should review the curriculum ourselves or ask a teacher to help. -- [JavaScript](https://github.com/HackYourFuture/JavaScript) -- [Git](https://github.com/HackYourFuture/Git) -- [Bash/Command Line Interface](https://github.com/HackYourFuture/CommandLine) +- [JavaScript 1](https://github.com/SocialHackersCodeSchool/JavaScript1) +- [JavaScript 2](https://github.com/SocialHackersCodeSchool/JavaScript2) +- [JavaScript 3](https://github.com/SocialHackersCodeSchool/JavaScript3) +- [Git](https://github.com/SocialHackersCodeSchool/Git) +- [Bash/Command Line Interface](https://github.com/SocialHackersCodeSchool/CommandLine) ## What will we learn? @@ -65,7 +67,7 @@ etc. There are many languages for this. You might've heard of Java, C, C++, C#, Go, Python, Ruby, PHP and [so on](https://blog.newrelic.com/2016/08/18/popular-programming-languages-2016-go/). -There are two reasons why we at HYF chose Node.js over others: +There are two reasons why we at SHA chose Node.js over others: 1. You already know JavaScript, so it's easier to get started; 2. Node.js is great for making web APIs because it is asynchronous by nature and @@ -77,7 +79,7 @@ There are two reasons why we at HYF chose Node.js over others: Take a look at [this video](https://www.youtube.com/watch?v=-o0yomUVVpU) made by Daan, he explains how your homework needs to be handed in from now on. -Also review the [Git workflow material](https://github.com/HackYourFuture/Git/blob/master/Lecture-3.md) +Also review the [Git workflow material](https://github.com/SocialHackersCodeSchool/Git/blob/master/Lecture-3.md) and use it as a reference. ## Rewatch previous lectures diff --git a/week1/homework/README.md b/week1/homework/README.md index 8fe32a7bd..f191f7ba6 100644 --- a/week1/homework/README.md +++ b/week1/homework/README.md @@ -28,9 +28,7 @@ node . ## Assignment Create an HTTP server that can add and subtract from a number, which we will -call `state`. Use project in `week1` directory as starting material. -Pay extra attention to line 21, which contains some hints for this week -`console.log('New http request received', request.url);` +call `state`. ### Rule 1