diff options
author | William Harrington <kb0iic@berzerkula.org> | 2019-04-17 16:51:10 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2019-04-17 16:51:10 -0500 |
commit | d0c113b62d629df378a43648c04c6200be8c7929 (patch) | |
tree | 1d5cfa89bc7fe52b3c22cd7e23fbd7d037a2e291 /README.md |
Initial commit
Diffstat (limited to 'README.md')
-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 +``` |