Runs on http://localhost:3000
- Node > v14
Runs on http://localhost:4000
GET api/companies
curl http://localhost:4000/api/companies
Returns a list with companies
GET api/specialities
curl http://localhost:4000/api/specialities
Returns a list with all specialities based on the information in the companies
- Improve the UI/UX:
- Implement autocomplete on Search
- Mobile version should be improved with a better layout
- Structure:
- Combine server part and client part folders in one Monerepo to make it possible to share types and dependencies between them.
- Add config for differnt enviroments and CI setup for running the tests
- Code Quality and scalability:
- In case of a big amount of data implement pagination so the server will return only part of the data and the frontend will load it on demand.
- Add more tests (including an e2e test as well)