In my last post, we created a simple Employee database using Node, Express and MongoDB. In this tutorial, we’ll add the ability to edit and delete employees. Edit an Employee The first thing we need to do is add additional functions to employeeprovider.js. employeeprovider.js //find an employee by ID EmployeeProvider.prototype.findById = function(id, callback) { this.getCollection(function(error, […]