thank you very much for your reply
but still routing doesn’t work
block code
- Routes Definitions
- /
app.get (“/”, (req, res) => {
res.render (“index”, {title: “Home”});
});
app.get (“/ user”, (req, res) => {
res.render (“user”, {title: “Profile”, userProfile: {nickname: “Auth0”}});
});
error
http: // localhost: 3000 / user
Cannot GET / user
help me please !!