I was wondering if and how i can automatically open a webpage when i start my server with nodejs
app.listen(app.get("PORT"), () => {
console.log(`Servidor corriendo en http://localhost:${app.get("PORT")}`)
})
I have this basic example where when i run node start proyect it will start the server and then i manually need to click on the console logged message or open a browser and type bla bla bla
I want to raise that web for itself like when in React we run the command npm run start
I tried to google it but i dont know how to search for this because i dont get any usefull info. Thank u very much