@Fox
d79e653c-983c-4f27-8c5c-d0eadc4b30e4-image.png
Thank you, my brother, your actions are really extraordinary and able to solve my problem according to my expectations, once again thank you, my brother.
How i can made an api who start chrome when recive a post?
I tryed to build an api with nodejs but it doesn't work
code:
try{
const express = require('express');
const app = express();
const port = 3000;
app.get('/', (req, res) => {
console.log('New request')
res.send(res);
});
app.listen(port, () => console.log(``))
}catch(e){
console.log(e)
}