Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blackbaba/pro-mern
Project Work for Apress Pro MERN
https://github.com/blackbaba/pro-mern
javascript mern mern-stack
Last synced: about 1 month ago
JSON representation
Project Work for Apress Pro MERN
- Host: GitHub
- URL: https://github.com/blackbaba/pro-mern
- Owner: blackbaba
- Created: 2019-11-01T05:52:01.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:58:26.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T18:58:44.352Z (almost 2 years ago)
- Topics: javascript, mern, mern-stack
- Language: JavaScript
- Homepage:
- Size: 1.49 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 38
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project - Issue Tracker
**Instructions**
1. Install Node modules : `npm install`
2. Start Babel Transpiler : `npm run watch`
3. Start Issue Tracker : `npm start`**Technology Stack**
- MERN - MongoDB, Express, React, Node
- Other - GraphQL**Key Features**
- The user is able to view a list of issues, with an ability to filter the list by various parameters.
- The user is able to add new issues, by supplying the initial values of the
issue’s fields.
- The user is able to edit and update an issue by changing its field values.
- The user is able delete an issue._An issue has the following attributes:_
- A title that summarizes the issue (freeform long text)
- An owner to whom the issue is assigned (freeform short text)
- A status indicator (a list of possible status values)
- Creation date (a date, automatically assigned)
- Effort required to address the issue (number of days, a number)
- Estimated completion date or due date (a date, optional)---