I got this server code running
    const fs = require('fs');
    const express = require('express');
    const app = express();
    app.get('/profile/:id', function (req, res) { // A route with a parameter
      res.render('profile', {
        user: getUserById(req.params.id)
       });
    });
    app.listen(8888, function () {
      console.log('Server running on port 8888');
    });
function getUserById(userId){
  fs.readFile('./database.json', 'utf8', function (err, data) {
    var json = JSON.parse(data);
    var users = json.users;
    return users.find(u => u.id === userId);
  });
}
And when calling the route, the function getUserById gets called. In my database, I have this data
{
  "users": [
    {
      "id": 2312,
      "name": "Foo Bar",
    }
  ]
}
so the route would be /profile/2312 for example.
req.params.id returns the value 2312.
In the loop at var currentUser = users[0]; currentUser.id will return 2312 and the parameter passed in is 2312.
But when assigning user = currentUser; the object user is null.
Do I miss a module? Is the code wrong?
 
    