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
- Host: GitHub
- URL: https://github.com/agusscript/crud-teams-backend
- Owner: agusscript
- Created: 2023-10-12T21:23:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-12T21:20:03.000Z (over 2 years ago)
- Last Synced: 2025-01-16T06:23:27.491Z (over 1 year ago)
- Topics: express, nodejs, rsdi
- Language: JavaScript
- Homepage: https://crud-teams-backend.onrender.com/teams
- Size: 149 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
Test