Skip to content

Commit 9b58cf2

Browse files
authored
feat: adds Lesson 15 README (code-differently#341)
* chore fixed typo Signed-off-by: Anthony D. Mays <[email protected]> * chore: add lesson_15 instructions. * docs: adds reading assignment --------- Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 971d16f commit 9b58cf2

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

lesson_14/algos/algos_app/src/main/java/com/codedifferently/lesson14/Lesson14.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public static void main(String[] args) {
77
printPermutations("abc", "");
88

99
System.out.println();
10-
System.out.print("The reverse of 'abcd' is: ");
10+
System.out.print("The reverse of 'abc' is: ");
1111
System.out.println(reverseString("abc"));
1212
}
1313

lesson_15/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Lesson 15
2+
3+
## Homework
4+
5+
* Read HFDP 9
6+
* Complete the [Building a Web Server](#building-a-web-server) exercise.
7+
8+
## Building a Web Server
9+
10+
For this assignment, you will build a NodeJS web server using the TypeScript programming language and the Express framework. The web server will host a website featuring your personal HTML README copied from [lesson_01][lesson-01]. Please create a unique sub-folder to store your files. Please reference the following resources to help you get started:
11+
12+
* [TypeScript for Java/C# Programmers](https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes-oop.html)
13+
* [How to set up TypeScript with Node.js and Express](https://blog.logrocket.com/how-to-set-up-node-typescript-express/)
14+
* [Serving static files in Express](https://expressjs.com/en/starter/static-files.html)
15+
* [Serving static files example on GitHub](https://github.com/expressjs/express/tree/master/examples/static-files)
16+
17+
[lesson-01]: /lesson_01/

0 commit comments

Comments
 (0)