Files
freeCodeCamp/curriculum/challenges/russian/05-apis-and-microservices/apis-and-microservices-projects/exercise-tracker.russian.md
2020-05-28 20:57:40 +05:30

2.7 KiB
Raw Blame History

id, title, challengeType, isRequired, forumTopicId, localeTitle
id title challengeType isRequired forumTopicId localeTitle
5a8b073d06fa14fcfde687aa Exercise Tracker 4 true 301505 Трекер упражнений

Description

Создайте полноценное приложение JavaScript, функционально похожее на это: https://nonstop-pond.glitch.me/ . Работа над этим проектом потребует от вас написания кода на Glitch для нашего стартового проекта. После завершения этого проекта вы можете скопировать общедоступный URL-адрес сбоя (на главную страницу вашего приложения) на этот экран, чтобы протестировать его! При желании вы можете написать свой проект на другой платформе, но он должен быть открыт для нашего тестирования. Запустите этот проект на Glitch по этой ссылке или клонируйте этот репозиторий на GitHub! Если вы используете Glitch, не забудьте сохранить ссылку на ваш проект в безопасном месте!

Instructions

Tests

tests:
  - text: I can create a user by posting form data username to /api/exercise/new-user and returned will be an object with username and <code>_id</code>.
    testString: ''
  - text: I can get an array of all users by getting api/exercise/users with the same info as when creating a user.
    testString: ''
  - text: 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. App will return the user object with the exercise fields added.
    testString: ''
  - text: I can retrieve a full exercise log of any user by getting /api/exercise/log with a parameter of userId(_id). App will return the user object with added array log and count (total exercise count).
    testString: ''
  - text: 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)
    testString: ''