Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/preetiraj3697/rest-api-with-node
Rest Api with Node.js mongodb and express.js.
https://github.com/preetiraj3697/rest-api-with-node
cyclic express mogoose mongo mongodb mongodb-atlas mongoose nodejs rest-api
Last synced: about 1 month ago
JSON representation
Rest Api with Node.js mongodb and express.js.
- Host: GitHub
- URL: https://github.com/preetiraj3697/rest-api-with-node
- Owner: Preetiraj3697
- Created: 2023-01-05T12:49:55.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-14T15:54:48.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T12:12:01.953Z (3 months ago)
- Topics: cyclic, express, mogoose, mongo, mongodb, mongodb-atlas, mongoose, nodejs, rest-api
- Language: JavaScript
- Homepage: https://zany-gray-lion-garb.cyclic.app
- Size: 47.9 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## REST API
#### Technology use
- Node.js
- Express.js
- Mongodb
- Mongoose
- Dotenv
- Mongodb atlas
- Thunder-client
- Postman
- Cyclic### link
https://zany-gray-lion-garb.cyclic.app## Click https://zany-gray-lion-garb.cyclic.app/api/products
All products data are show.
like
```JSON
{
"Products": [
{
"_id": "63b9acef67efac07cf5e9d03",
"name": "iphone10",
"price": 1154,
"featured": false,
"rating": 4,
"createAt": "2023-01-07T17:33:34.794Z",
"company": "apple",
"__v": 0
},
{
"_id": "63b9acef67efac07cf5e9d02",
"name": "iphone",
"price": 154,
"featured": false,
"rating": 4,
"createAt": "2023-01-07T17:33:34.794Z",
"company": "apple",
"__v": 0
},
{
"_id": "63b9acef67efac07cf5e9d07",
"name": "Dell Series",
"price": 1054,
"featured": true,
"rating": 4,
"createAt": "2023-01-07T17:33:34.794Z",
"company": "dell",
"__v": 0
},
{
"_id": "63b9acef67efac07cf5e9d06",
"name": "Nokia 420",
"price": 1954,
"featured": true,
"rating": 4,
"createAt": "2023-01-07T17:33:34.794Z",
"company": "nokia",
"__v": 0
},
{
"_id": "63b9acef67efac07cf5e9d08",
"name": "galaxy w20",
"price": 1654,
"featured": true,
"rating": 4,
"createAt": "2023-01-07T17:33:34.794Z",
"company": "samsung",
"__v": 0
}
],
"nbHits": 5
}
```## Functionality
1. Sorting by name
2. Sorting by price
3. Searching by anything like name price featured etc.
4. Pagination
5. Registere
6. Login