Jump to content

goochy13

Members
  • Posts

    4
  • Joined

  • Last visited

About goochy13

  • Birthday 11/10/1998

Profile Information

  • Gender
    Male

goochy13's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, My IP (210.185.91.143) has been blocked. Could someone please unblock it? Thanks
  2. I had a good read of this but still couldn't solve my problem. I can run the app on Localhost and it even works fine on Heroku, just not on Heliohost.
  3. I am trying to run a simple node app using express; however, I keep getting "Cannot GET /test" when I try to access the app (goochy13.heliohost.org/test). I have followed the Node tutorial on the Wiki and managed to get it working using "http" - but as I cannot get the same app to work using express instead of http I can only assume express is the problem. My simple test app is below. var express = require("express"); app = express(); const hostname = '127.0.0.1'; const port = 3000; app.get("/", (req, res) =>{ res.statusCode = 200; res.setHeader('Content-Type', 'text/html'); res.end('Node.js is on and working.'); }); app.listen(port, hostname, () => { console.log("Test app is running."); }); I have copied across the "node_modules" folder as a .zip - and extracted it from the server side. I have also included package.json and I hit "ensure dependencies" in the application manager. Certainly possible that I've missed a step or misunderstand what is required to get this up and running. Anyone got any ideas? Cheers
×
×
  • Create New...