Hi, @Coderslang_Master I'm having the same results and I have no idea why. However, the code works, as I can view the string when I access localhost:8080/hello in the browser.
Here's index.js:
`import { server } from './server.js';
const port = 8080;
server.listen(port, () => console.log(Waiting for connections on port ${port}
));`
and server.js:
`import express from 'express';
export const server = express();
server.get('/hello', (req, res) => {
return res.send('Hello Coderslang!');
})`