Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theinfinity007/exercise-tracker
A Node.js based web app in which you can keep track of the exercises. You can add the new exercises and can later get the details of those exercise.
https://github.com/theinfinity007/exercise-tracker
exercise-tracker express-js mongodb mongoosejs node-js shortid-js tracker
Last synced: about 2 months ago
JSON representation
A Node.js based web app in which you can keep track of the exercises. You can add the new exercises and can later get the details of those exercise.
- Host: GitHub
- URL: https://github.com/theinfinity007/exercise-tracker
- Owner: TheInfinity007
- Created: 2020-08-08T10:42:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-13T17:20:01.000Z (over 4 years ago)
- Last Synced: 2024-06-17T14:17:01.487Z (7 months ago)
- Topics: exercise-tracker, express-js, mongodb, mongoosejs, node-js, shortid-js, tracker
- Language: JavaScript
- Homepage: https://roan-automatic-raptorex.glitch.me/
- Size: 28.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exercise Tracker REST API
#### A microservice project, part of Free Code Camp's curriculum
### 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 be 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)