Stuck On Advanced Node and Express - How to Put a Profile Together

I have been around with this challenge and the test said “You should be passing the variable username with req.user.username into the render function of the profile page”. But I have include the req.user.username in the GET /profile render route. Here is the code https://glitch.com/edit/#!/join/96d16131-4f3a-48a6-bae2-709b592be423.

Looks like you linked a wrong file. I don’t see any of that code you mentioned. I see this.

// server.js
// where your node app starts

// init project
var express = require('express');
var app = express();

// we've started you off with Express, 
// but feel free to use whatever libs or frameworks you'd like through `package.json`.

// http://expressjs.com/en/starter/static-files.html
app.use(express.static('public'));

// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function (request, response) {
  response.sendFile(__dirname + '/views/index.html');
});

app.get("/dreams", function (request, response) {
  response.send(dreams);
});

// could also use the POST body instead of query string: http://expressjs.com/en/api.html#req.body
app.post("/dreams", function (request, response) {
  dreams.push(request.query.dream);
  response.sendStatus(200);
});

// Simple in-memory store for now
var dreams = [
  "Find and count some sheep",
  "Climb a really tall mountain",
  "Wash the dishes"
  ];

// listen for requests :)
var listener = app.listen(process.env.PORT, function () {
  console.log('Your app is listening on port ' + listener.address().port);
});

I am sorry, it seems the dependency has caused the problem and it now worked and passed after installing mongodb version 3. Thank you!