@skaylet said in Failed to Start Browser: Not enough system resources:
How can I do this? Where is the that screen?
2021-07-12_192819.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)
}