Modify the myApp.js file to log "Hello World"

I have added the console.log(“Hello World”) in the myApp.js file but it does not log anything. Here is the link to my glitch file https://aerial-just-pomegranate.glitch.me

server.js
/******************************************************

  • PLEASE DO NOT EDIT THIS FILE
  • the verification process may break
  • ***************************************************/

var bGround = require(‘fcc-express-bground’);
var myApp = require(‘./myApp’);
var express = require(‘express’);
var app = express();

/******************************************************

  • PLEASE DO NOT EDIT THIS FILE
  • the verification process may break
  • ***************************************************/

myApp.js

let express = require(“express”);
let app = express();

console.log(“Hello World”);

module.exports = app;

https://replit.com/@Binovino/boilerplate-express?v=1

https://replit.com/@Binovino/boilerplate-express?v=1

I am sorry I trying to figure out how to send the link to my glitch code. Can you try this repl.it link if you can see the code? boilerplate-express/ - Replit

is this the glitch remix you were talking about? Glitch :・゚✧

1 Like

@camperextraordinaire what did i miss in the code?

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