I am trying to run a very simple server on my Mac, so I can access the file from localhost.
I have node and express installed, and thatβs all there is in my server file.
var express = require('express'), app = express(); app.use(express.static(__dirname, '/')); app.listen(8080); console.log("App listening on port 8080");
When I try to do:
node server
I get this as an answer:
/Users/mt_slasher/node_modules/express/node_modules/serve-static/index.js:47 var opts = Object.create(options || null) ^ TypeError: Object prototype may only be an Object or null: / at Function.create (native) at Function.serveStatic (/Users/mt_slasher/node_modules/express/node_modules/serve-static/index.js:47:21) at Object.<anonymous> (/Users/mt_slasher/Desktop/My Projects/Basket/Site/server.js:4:23) at Module._compile (module.js:460:26) at Object.Module._extensions..js (module.js:478:10) at Module.load (module.js:355:32) at Function.Module._load (module.js:310:12) at Function.Module.runMain (module.js:501:10) at startup (node.js:129:16) at node.js:814:3
I ran the same file on a Windows machine with the same files and had no problems.
After some digging, I found that this line is apparently the main culprit:
app.use(express.static(__dirname, '/'));
Can someone tell me what could happen?
source share