Project Repository for EduTrack
- NodeJS
- Jest (if running testcases)
- This application requires MongoDB to be installed locally on your machine. Visit this link for instructions: https://www.mongodb.com/docs/manual/administration/install-community/#std-label-install-mdb-community-edition
git clone "https://github.com/FrickTown/BJB-AB.git" && cd BJB-ABIn the root folder: BJB-AB/ run:
npm installTo run the code, you have two alternatives. One relies on ts-node, and runs the TypeScript code without building and compiling it into JavaScript.
# Run the TypeScript code directly
npm run ts
# or build the code using tsc --strict and run it using node
npm run build;
npm start;To run all Jest test cases, simply run
npm test;
# or
jest --runInBand