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 trial

JavaScript Express Basics Using Templates with Express Using Pug in Your Express App

patleroux
seal-mask
.a{fill-rule:evenodd;}techdegree
patleroux
Full Stack JavaScript Techdegree Student 10,057 Points

Why 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

Isn't 345 out of range of IP octets?