Hello,
I can not seem to get the tests to pass for this exercise. Please note, I have entered the following into .env:
MESSAGE_STYLE=uppercase
Here’s my myApp.js code:
var express = require('express');
var app = express();
// --> 7) Mount the Logger middleware here
// --> 11) Mount the body-parser middleware here
/** 1) Meet the node console. */
console.log('Hello World');
/** 2) A first working Express Server */
app.get('/', function(req, res) {
res.send('Hello Express');
})
/** 3) Serve an HTML file */
const absolutePath = __dirname + '/views/index.html'
app.get('/', function(req, res) {
res.sendFile(absolutePath)
})
/** 4) Serve static assets */
const publicDirPath = __dirname + '/public'
app.use('', express.static(publicDirPath))
/** 5) serve JSON on a specific route */
// app.get('/json', (req, res) => {
// res.json({ message: 'Hello json'})
// })
/** 6) Use the .env file to configure the app */
app.get('/json', (req, res) => {
let response = "Hello json"
if (process.env.MESSAGE_STYLE === 'uppercase') {
response = response.toUpperCase()
}
res.json({ message: response })
})
/** 7) Root-level Middleware - A logger */
// place it before all the routes !
/** 8) Chaining middleware. A Time server */
/** 9) Get input from client - Route parameters */
/** 10) Get input from client - Query parameters */
// /name?first=<firstname>&last=<lastname>
/** 11) Get ready for POST Requests - the `body-parser` */
// place it before all the routes !
/** 12) Get data form POST */
// This would be part of the basic setup of an Express app
// but to allow FCC to run tests, the server is already active
/** app.listen(process.env.PORT || 3000 ); */
//---------- DO NOT EDIT BELOW THIS LINE --------------------
module.exports = app;