https://github.com/justdvnsh/exercise-tracker-microservice
An Exercise tracker microservice made using nodejs
https://github.com/justdvnsh/exercise-tracker-microservice
api exercise-tracker microservice mongodb mongoose nodejs rest-api
Last synced: 12 months ago
JSON representation
An Exercise tracker microservice made using nodejs
- Host: GitHub
- URL: https://github.com/justdvnsh/exercise-tracker-microservice
- Owner: justdvnsh
- Created: 2018-09-17T06:28:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-17T06:37:58.000Z (over 7 years ago)
- Last Synced: 2025-02-07T08:31:11.297Z (about 1 year ago)
- Topics: api, exercise-tracker, microservice, mongodb, mongoose, nodejs, rest-api
- Language: JavaScript
- Homepage: https://exercise-tracker-justdvnsh.glitch.me/
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# API Project - Exercise Tracker REST API
### User Stories
1. I can create a user by posting form data username to /api/exercise/new-user and returned will be an object with username and _id.
2. I can get an array of all users by getting api/exercise/users with the same info as when creating a user.
3. I can add an exercise to any user by posting form data userId(_id), description, duration, and optionally date to /api/exercise/add. If no date supplied it will use current date. Returned will the the user object with also with the exercise fields added.
4. I can retrieve a full exercise log of any user by getting /api/exercise/log with a parameter of userId(_id). Return will be the user object with added array log and count (total exercise count).
5. I can retrieve part of the log of any user by also passing along optional parameters of from & to or limit. (Date format yyyy-mm-dd, limit = int)