https://github.com/quien697/coffeeorderapi
It's a simple API practice project with REST API.
https://github.com/quien697/coffeeorderapi
express nodejs rest-api
Last synced: 3 months ago
JSON representation
It's a simple API practice project with REST API.
- Host: GitHub
- URL: https://github.com/quien697/coffeeorderapi
- Owner: quien697
- Created: 2023-09-29T05:56:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-29T08:39:12.000Z (almost 3 years ago)
- Last Synced: 2025-07-14T06:17:32.222Z (12 months ago)
- Topics: express, nodejs, rest-api
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CoffeeOrderAPI
1. It's a simple API practice project with REST API.
2. No database for now.
## Technologies used
1. [Express](https://expressjs.com): It's a free and open-source web application framework for Node.js and used for designing and building web application quickly and easily.
2. REST API: It's a specific type of API that follows these guidelines.
## Other Dependencies
1. [Nodemon](https://nodemon.io): The main feature of this library is that the application will automatically restart when your code changes
## Other Info
* There is a `CoffeeOrder.paw` file inside of the `others` folder. That is using [RapidAPI](https://paw.cloud) tool to test api.
## Getting Started
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](http://localhost:3001/) with your browser to see the result.