I'm trying to run this simple file in an empty folder
// time.js
const moment = require('moment')
function getDay() {
var today = moment().day()
console.log(today);
}
getDay()
using node time.js
But I get
Error: Cannot find module 'moment'
However I have run npm install -g moment and npm install moment.
What noob error am I doing?
node_modulespresent?