Namecheap: Node JS Express App - App Route return 404 not found
问题 Trying to get Simple Express Application up using NameCheap Shared Hosting. I have set up my Node JS application as Described here NodeJS NameCheap Docs Current Setup: Application Root: url.com Application URL: url.com Application Startup File: server.js I have ran NPM Install using the button provided I have tried loading the URL http://url.com/hello Expecting Hello World to displayed in the Page. var express = require("express"); var app = express(); const port = 3001; app.set("port", port)