https://github.com/fooloomanzoo/pms
Example for a Project Management System in Javascript
https://github.com/fooloomanzoo/pms
Last synced: 11 months ago
JSON representation
Example for a Project Management System in Javascript
- Host: GitHub
- URL: https://github.com/fooloomanzoo/pms
- Owner: fooloomanzoo
- Created: 2019-03-18T18:59:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-18T19:31:58.000Z (over 7 years ago)
- Last Synced: 2025-04-14T17:32:37.917Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.com/fooloomanzoo/pms)
# Example of a Project Management System
The following functionality should be available:
- Creating a new employee with a given first name, last name and a direct supervisor
- Creating a new project with a given name, a start date and a time slack
- Creating a new task with a given name, a description of this task and estimated days needed to
complete it
- Include the possibility to adjust the give time estimation, by creating a new value for estimated days
needed for a task
- Assign a task to a project: By this the attributes „assigned tasks" and „end date" will be updated
automatically
- Assign a project to an employee (an employee can only work on two projects at the same time).
- Delete a task (don‘t forget to update the underlying references)
- Delete a project (don‘t forget to update the underlying references)
- Display/View all employees
- Display/View all tasks for a given project
- Getting the total days needed for a given list of projects (assuming that projects can‘t be worked on
parallel)
## installation
```Shell
npm i
```
## testing
```Shell
npm run test
```
## building
```Shell
npm run build
```
[Tests on Travis CI](https://travis-ci.com/fooloomanzoo/pms)