A local organization wants to create an application that allows them to manage their employees. You are tasked with creating a proof-of-concept API using placeholder data.
Write and export an Express app in app.js that serves the following endpoints.
Run npm test to make sure that you are passing all test cases!
GET /sends the string"Hello employees!".GET /employeessends the array of employees.GET /employees/:idsends the employee with the givenid.- This should 404 with a message if there is no employee with that id.
GET /employees/randomsends a random employee from the array.- Be very careful about where you write this middleware! A request is handled by the first handler with a matching route.
Submit the link to your public GitHub repository.