A command-line application to manage a company's employee database, using Node.js, Inquirer, and MySQL.
Application that accepts user input from the command-line. When the app is started up you are presented with the following options: view all departments, view all roles, view all employees, add a department, add a role, add an employee, and update an employee role. When the user chooses to view all departments, the user is presented with a formatted table showing department names and department ids When the user chooses to view all roles, then they are presented with the job title, role id, the department that role belongs to, and the salary for that role When the user chooses to view all employees, they are able view a formatted table showing employee data, including employee ids, first names, last names, job titles, departments, salaries, and managers that the employees report to When users choose to add a department, then they are prompted to enter the name of the department and that department is added to the database. When users choose to add a role, they are prompted to enter the name, salary, and department for the role and that role is added to the database. When users choose to add an employee, then they can enter the employee’s first name, last name, role, and manager, and that employee is added to the database. When users choose to update an employee role, then they are prompted to select an employee to update and their new role and this information is updated in the database.