Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Aaron Noble
6,559 PointsCannot GET /cards error appears. I've tripled check everything and still can't find the issue. Please help. Thank you!
Here is my code.
App.js
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.render('card', { prompt: "Who is buried in Grants tomb" });
});
app.listen(3000, () => {
console.log('The application is running on localhose:3000');
});
index.pug
doctype html
html(lang="en")
head
title Flash Cards
body
header
h1 Flash Cards
section#content
h2 Welcome, student!!!
footer
p An app to help you study
card.pug
doctype html
html(lang="en")
head
title Flash Cards
body
header
h1 Flash Cards
section#content
h2= prompt
footer
p An app to help you study
Please let me know if you see anything I am doing incorrectly. Thank you. Aaron Noble
3 Answers

Christine Treacy
Full Stack JavaScript Techdegree Graduate 18,411 PointsThanks for the nodemon reminder! That fixed things for me too

Aaron Noble
6,559 PointsWhat's weird is if I delete the root path completely and just have this below. It still shows my template on the localhost. I would think that this should throw an error since it's not referencing the index. pug file but it still showing the template.
const express = require('express');
const app = express();
app.set('view engine', 'pug');
/*app.get('/', (req, res) => {
res.render('index');
});*/
app.get('/card', (req, res) => {
res.render('card', { prompt: "Who is buried in Grants tomb" });
});
app.listen(3000, () => {
console.log('The application is running on localhose:3000');
});

kingsley Emeka
Full Stack JavaScript Techdegree Graduate 18,226 PointsChange your code to this.
'''app.get('/card', (req, res) => { res.render('card', { prompt: "Who is buried in Grants tomb" }); }); '''
app.get your used cards and res.render you used card Both should be card This should fix your issue.

Aaron Noble
6,559 PointsI saw that. I tried replacing it to '/card' even though the video has cards and that never worked. I just copied your code directly into my editor and it still doesn't work. I'm puzzled with this problem.

Aaron Noble
6,559 PointsSorry I finally realized why my route wasn't updating correctly. I wasn't running the server with 'nodemon' so it wasn't watching for the changes in the pug file. After running the server correctly the code you put works perfectly!. Thank you again.
Vic A Ruiz
1,943 PointsVic A Ruiz
1,943 PointsSame here, thanks!