Hello, my *.glitch.me not working. My page : https://pvbot.glitch.me/
Please help.
@banbuskox try adding the following lines of code to your app.js
:
app.listen(process.env.PORT, function() {
console.log("listening on port 3000");
}
not working “app is not defined”, idk what i must define
Make sure you have Express installed.
npm i express
Then at the top of the file:
const express = require('express');
const app = express();
1 Like
thx you so much!!!
1 Like