- It's a simple API practice project with REST API.
- No database for now.
- Express: It's a free and open-source web application framework for Node.js and used for designing and building web application quickly and easily.
- REST API: It's a specific type of API that follows these guidelines.
- Nodemon: The main feature of this library is that the application will automatically restart when your code changes
- There is a
CoffeeOrder.pawfile inside of theothersfolder. That is using RapidAPI tool to test api.
First, install all the packages:
npm install
Then, run the development server:
node app.js
Or using Nodemon to run:
nodemon app.js
# or
npm start
Open http://localhost:3001 with your browser to see the result.