diff options
-rw-r--r-- | README.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..0d40911 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# Express Crash Course + +> Files for the [YouTube crash course](https://www.youtube.com/watch?v=L72fhGm1tfE) + +- Setup & Install / Simple Server +- Simple API +- Routes, Request & Response +- Express Router +- Static Files +- Template Engine Setup With Views +- Middleware +- Nodemon + +## Quick Start + +```bash +# Install dependencies +npm install + +# Serve on localhost:5000 +npm run dev +``` |