Submit waveform annotations and get list of submitted answers.
- Check that you have node and npm install by running
npm -v
andnode -v
, if not, install node and npm - Check that you have mongodb installed with the driver, if not install mongodb
- Run
npm install
which will install library dependencies. - Run
npm run start-server
to run the server.
To look at what is inside your database in dev
- Run
mongo "mongodb://localhost/dev"
- Run
use dev
- Then you can run any command like
db.stethoscoperecords.find()
- Export the get and post from NodeJs to a routes folder
- Add more tests
- Add user login sessions
- Could generate the .dat from the .wav file in Nodejs and save it on the cloud, then use it in the FE, instead of saving them in the public folder.