Skip to content

godququ5-code/zuoye

Repository files navigation

express api

#qu A simple REST API in Node.js

API Endpoints

Methods Urls Description
GET api/employees Get all employees
GET api/employees/id Get a specific employee
POST api/employees Create a new employee
PUT api/employees/id Update an existing employee
DELETE api/employees/id Delete an existing employee

Quick Start

Clone the repo.

https://github.com/zagaris/express-api.git
cd express-api

Create the .env.dev file.

DB_URL = localhost/my-employees
PORT = 5000

Create the .env.prod file.

DB_URL = myhost.me/my-employees
PORT = 8080

Install the dependencies.

npm install

To start the express server in dev mode, run the following.

npm run dev

To start the express server in prod mode, run the following.

npm run prod

For more details check Build a Restful CRUD API with Node.js.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors