- JavaScript
- Node.js
- Express.js
- How to create a web app with Express.js
- The MVC framework
In this lab exercise, you will learn how to use Express.js to build dynamic websites on the Node.js platform. In the process, you'll learn some fundamental HTTP concepts that you can apply to any other framework!
- We know how to run a server using Node.js
- We have static HTML, CSS & JavaScript files we need to render in a Browser
- Express.js allows us to serve these static files to the Browser using Node.js
There is no starter code for this lab exercise.
-Work through this tutorial on Team Treehouse: Express Basics
- Add more HTML views and routes to your Express.js app.
- Create a blog-based website where you can write, edit and publish posts.
- Create a mock shopping cart website where a user can browse inventory, add items to their cart, and reduce the inventory count for an item when they "purchase" it.