Webview for monitoring node.js

Hello guys, I m programming a bot for minecraft and I wanted to make a webview in order to monitoring it but I don’t know how anyone can teach me please ?

If it’s node I think you can just put

const express = require('express');
const app = express();
const port = 3000;

app.get('/', (req, res) => res.send('Hello World!'));

app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`));

at the top of your file, which will make replit treat it as a website and open webview

4 Likes

Welcome to the forums BTW!

2 Likes

Really thank you it worked first try
Have a nice day !

3 Likes