Currently I am trying to run a very basic to do list using node. After setting up package.json and server.js, I ran npm start run, but I am getting a weird error.
UPDATE: Here is the basic code and .json file: enter image description here
var express = require('express'),
app = express(),
port =process.env.PORT ||3000;app.listen(port);
console.log('todo list RESTful API server started on: ' + port);