You are missing req and res inside your upload(), try adding those two like upload(req,res, function (err){
upload(req, res, function (err) {
if (err) {
console.log("There was an error uploading the image.");
}
res.json({
success: true,
message: 'Image uploaded!'
});
})