Click here to see a short demonstration and explanation of the app.
Clone the GitHub project onto your local machine
Navigate into the project folder
Open the project in VSCode
Install npm
npm install / npm i
npm run test
npm run test:watch
An app that creates a HTML document for a given team. Where each team contains a single manager along with as many engineers and interns required, and the individual members of a team are rendered as separate cards.
- Used Inquirer to prompt users for inputs.
- Used user inputs to generate the readme file.
- Used module.exports to separate functions into separate files.
- Used classes to create employee object
- extended employee object to create engineer, manager and intern classes.
- Used Jest for unit testing.