@ecstasy e56a2fe6-c9fd-49d2-a467-7a00cfa4b9ee-image.png
or
0f363970-78da-4e6b-a413-205352dc48fb-image.png
or
cf937ae9-54ea-44ba-9889-b09abf6e9522-image.png
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)
}