An open API service indexing awesome lists of open source software.

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.

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.