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

https://github.com/agusscript/crud-teams-backend

Teams API Rest with Node and Express
https://github.com/agusscript/crud-teams-backend

express nodejs rsdi

Last synced: 18 days ago
JSON representation

Teams API Rest with Node and Express

Awesome Lists containing this project

README

          

# Crud teams backend REST API

## Run the project locally

Clone the project

```bash
git clone git@github.com:agusscript/crud-teams-backend.git
```

Go to the project directory

```bash
cd crud-teams-backend
```

Install dependencies

```bash
npm install
```

Start the local server

```bash
npm run start
```

## API Reference

Get all teams

```bash
GET /teams
```

Get one team by Id

```bash
GET /teams/:id
```

Create team

```bash
POST /teams
```

Edit team

```bash
PATCH /teams/:id
```

Delete team

```bash
DELETE /teams/:id
```

## Run test

```bash
npm run test
```

## Built with




NodeJs

Node



Express

Express

Test




Jest

Jest