console-feed icon indicating copy to clipboard operation
console-feed copied to clipboard

Captures console.log's into a React Component πŸ”₯

Results 53 console-feed issues
Sort by recently updated
recently updated
newest added

Going through mock interview with mentee and went in bit of a circle because `console.dir` didn't show up in sandbox console with any output at all and we thought their...

Hey! It would be great if you could upgrade to the latest emotion version. This project is no longer compatible with emotion v11.

## Description When I am trying to see the error logs which occur in promise, but in console-feed no errors are being displayed though those errors appear in a browser...

First of all you did great job! I change example code just 'dark' to 'light' it only affected after one depth object. root level object display as 'dark' themeed.

Consider this code: ```js const testPromise = new Promise((resolve) => setTimeout(() => resolve(42), 1000) ); testPromise.then(() => console.log(testPromise)); ``` Expected output (from Chrome's console): ![image](https://user-images.githubusercontent.com/2083930/119831504-02a4dd00-bf06-11eb-8763-0791eda21fe2.png) Actual output: ![image](https://user-images.githubusercontent.com/2083930/119831676-2e27c780-bf06-11eb-9700-daa810bd9632.png) Reproduction sandbox:...

I'm investigating what was reported on #61 within CodeSandbox. I tried to upgrade to the newest version (3.1.9) and now we're getting `Cannot read property 'toUpperCase' of undefined` in some...

# Problem Because console-feed runs console methods in `setTimeout`, it cannot capture changes happening synchronously between logs. For instance, ``` var arr = []; console.log("before", arr); arr.push(3); console.log("after", arr); ```...

The Chrome developer tools have a feature to enable timestamps on all entries. This also includes hover text with a full timestamp. ![image](https://user-images.githubusercontent.com/17261553/130656172-097280d3-ed74-4cf4-8d05-63257bffd216.png) Is there anyway to accomplish this with...

Codesanbox: https://codesandbox.io/s/elegant-maxwell-sjem1?file=/index.js Hello, I found that sometimes the page crashes when console.log(e) when I use a public component library like ant-design. But I don’t think this is a problem with...

To reproduce: ```ts const obj = { foo: 3n }; console.log(obj); ``` I believe that [this file](https://github.com/samdenty/console-feed/blob/master/src/Transform/replicator/index.ts) would need to detect bigints (typeof x === 'bigint') and handle encoding/decoding them.