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

Hi, I am just curious about the intended usage of `Unhook` method. Currently, I have the following inside my component: ``` const [logs, setLogs] = useState([]); useEffect(() => { Hook(...

Brace yourselves, issues from CodeSandbox incoming! 😃 Consider this code: ```js const testSet = new Set(); testSet.add(1); testSet.add(2); testSet.add({ foo: 'bar' }); testSet.add([3, 4]); console.log(testSet); ``` Expected output (from Chrome's...

Consider this code: ```js console.time("merge"); for (let i = 0; i < 100000; i++) { merge(obj, a); shallowEqual(a, b); } console.timeEnd("merge"); ``` Expected output (from Chrome's console): ![image](https://user-images.githubusercontent.com/2083930/119806977-5e15a180-beeb-11eb-9b7b-a355d26bf7fe.png) Actual output:...

When trying to rerender the console the component the variant, BASE_FONT_FAMILY, BASE_FONT_SIZE are note getting affected. ``` ``` theme can have values `'light'` & `'dark'`

I am making a console log input (very similar to the one on code sandbox) and I am using the `Encode` function for the data property of the log object...

### The problem is in BASE_FONT_SIZE, and it breaks after a value of 14 on Chrome and 18 on firefox. ![feb23-console-feed](https://user-images.githubusercontent.com/43005088/108796302-6e497800-75ae-11eb-9c37-f9bb77a17408.png) ![image](https://user-images.githubusercontent.com/43005088/108796373-a2249d80-75ae-11eb-983d-d6e5aa88b730.png)

hey there i am building an IDE for JS and i am trying to console.log from it and the Console components does't update. this text is showing in the browser...

``` function sum(){ console.log(this); } console.log(sum.prototype); ``` when I tried console.log(this) my app was crashed and I tried console.log(sum.prototype) printed empty like this `sum{}`

I am using console-feed in my custom code editor. It is working fine with all other things, but showing only one key for an event object and some other responses...