📄️ Introduction
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js' package ecosystem, npm, is the largest ecosystem of open source libraries in the world.
📄️ Express
Express is a Node.js web application framework that provides a robust set of features for web and mobile applications.
📄️ Create more routes
In express, you can create multiple routes in a single file. In this workshop, we'll build a REST server. REST stands for Representational State Transfer. It's a fancy way of saying that we'll be using HTTP methods to interact with our server. We'll be using the following HTTP methods:
📄️ Get working!
Get started on your API.
📄️ Solutions
Are you already looking at this solution? If so, you might as well read it. I'll try to explain my thought process as I go along.