Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialpatleroux
Full Stack JavaScript Techdegree Student 10,057 PointsWhy is it not working on a remote host. I tried 32.345.23.45:3000 but it does not work.
const express = require('express');
const app = express();
app.set('view engine', 'pug');
app.get('/', (req, res) => { res.render('index');
});
app.get('/cards', (req, res) => { res.locals.prompt = "Who will succeed at this?"; // res.locals.hint = "Who is at the keyboard"; res.render('cards', { prompt: "Who will succeed at this?" });
});
app.listen(3000, () => { console.log('The application is running on localhost:3001 !'); });
2 Answers
KRIS NIKOLAISEN
54,971 PointsIsn't 345 out of range of IP octets?
patleroux
Full Stack JavaScript Techdegree Student 10,057 Pointstrue, but it's not my real ip