carlo icon indicating copy to clipboard operation
carlo copied to clipboard

Web rendering surface for Node applications

Results 57 carlo issues
Sort by recently updated
recently updated
newest added

Remote devices in Chrome: ![image](https://user-images.githubusercontent.com/7932380/58844802-57ad1000-86ab-11e9-8c0b-02e4f20dc2f0.png) Remote devices in Carlo: ![image](https://user-images.githubusercontent.com/7932380/58844808-5e3b8780-86ab-11e9-9773-55467bc42615.png) When I remote debug webView using chrome, I have to open `chrome://inspect/#devices`, then click the `inspect` link of one page,...

Accoding to some bug/feature in puppeteer, carlo/puppeteer will not launch on win10 sometimes. see: https://github.com/GoogleChrome/puppeteer/issues/3186 **here is how to fix I found:** when launch puppeteer, add an option `ignoreDefaultArgs: ['--disable-extensions'],`...

Carlo won't load a next.js site. This is error message in the console: Failed to load resource: net::ERR_BLOCKED_BY_CLIENT /_next/static/4sXxrLKhlqKMGukbOt5t1/pages/_app.js:1 Failed to load resource: net::ERR_BLOCKED_BY_CLIENT /_next/static/runtime/webpack-a79426b5e11f0ba5879d.js:1 Failed to load resource: net::ERR_BLOCKED_BY_CLIENT...

Using an AZERTY keyboard on OSX, when typing `cmd` + `a` it is mapped as `cmd` + `q` and closes the window.

anyway to see my changes immediately after modifying a source file? right now I have to manually shut it down, write a fix, run carlo

When debugging, it is useful to automatically launch devtools for the window, using the "--auto-open-devtools-for-tabs" flag. Example main.js: ``` const carlo = require('carlo'); (async () => { const app =...

```js const permission = await Notification.requestPermission(); if (permission === "granted") { new Notification('some-title').onclick = (ev) => { console.log(ev) } } ```

Hey. So this is a really great initiative and I'm following the progress closely. I was wondering if it would be a good idea for carlo apps to ship with...

This allows the RPC content script to be arbitrary read from any directory, rather than the default `__dirname + '../rpc/rpc.js`. This is important in situations where `node_modules` may be inaccessible...

It seems `app.exit()` never resolves. Repro: ```js const carlo = require('carlo'); (async () => { const app = await carlo.launch(); console.log('launched'); console.log('exiting...'); await app.exit(); console.log('exited'); // this never logs })();...