Can't got work with console.log,

I think it’s a bug on the course. Could you help me?

Tell us what’s happening:
Describe your issue in detail here.

Your project link(s)

solution: boilerplate-npm-1 - Replit

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15

Challenge: Meet the Node console

Link to the challenge:

You can’t wrap it in a function like you are and you are not supposed to add anything to exports. Just add the console log at the top level and don’t change the starting code.

myApp.js

let express = require('express');
let app = express();

// add your code here

module.exports = app;

Well doesn’t work either.

You are not using the correct starter code.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.