Table of Contents
This project was make as a sample to showcase my nodejs and API creation skills.
For file handling, it uses the Multer
For server, it uses the Express
For testing, it uses Jest and Supertest
.
app
├── app.js
├── config.js
├── handlers
│ ├── getdatabyid.js
│ ├── getdatabyinterval.js
│ ├── getdata.js
│ ├── index.js
│ └── setdata.js
├── index.js
├── package.json
├── package-lock.json
├── services
│ └── db.js
└── __test__
└── API_tests.spec.js
The project itself is very simple, it uses mostly deffault libraries.
To run the project without docker just run the following commands in your terminal.
- cd app/
- npm install
- npm run start
Testing:
- npm run test
Distributed under the MIT License. See LICENSE for more information.
José L. N. Coliques - @josecolinques - josecolinques@gmail.com
Project Link: https://github.com/Colinquess/luizalabs