├── .circleci └── config.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierrc ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── demo ├── index.html ├── public │ └── iframe.html ├── src │ ├── index.tsx │ └── main.tsx └── vite.config.ts ├── package.json ├── scripts └── test.js ├── src ├── Component │ ├── Message.tsx │ ├── __tests__ │ │ └── Console.spec.tsx │ ├── devtools-parser │ │ ├── format-message.ts │ │ ├── index.ts │ │ └── string-utils.ts │ ├── elements.tsx │ ├── index.tsx │ ├── message-parsers │ │ ├── Error.tsx │ │ ├── Formatted.tsx │ │ └── Object.tsx │ ├── react-inspector │ │ ├── elements.tsx │ │ ├── index.tsx │ │ └── util.ts │ └── theme │ │ ├── default.ts │ │ └── index.ts ├── Hook │ ├── __tests__ │ │ ├── Hook.spec.tsx │ │ ├── Log.tsx │ │ ├── __snapshots__ │ │ │ └── Hook.spec.tsx.snap │ │ └── console.ts │ ├── construct.ts │ ├── index.ts │ ├── parse │ │ ├── GUID.ts │ │ ├── __tests__ │ │ │ ├── Parse.spec.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Parse.spec.tsx.snap │ │ ├── index.ts │ │ └── methods │ │ │ ├── assert.ts │ │ │ ├── count.ts │ │ │ └── timing.ts │ └── store │ │ ├── actions.ts │ │ ├── dispatch.ts │ │ ├── reducer.ts │ │ └── state.ts ├── Transform │ ├── BigInt.ts │ ├── Function.ts │ ├── HTML.ts │ ├── Map.ts │ ├── arithmetic.ts │ ├── index.ts │ └── replicator │ │ └── index.ts ├── Unhook │ └── index.ts ├── definitions │ ├── Component.d.ts │ ├── ComponentOverrides.d.ts │ ├── Console.d.ts │ ├── Methods.ts │ ├── Payload.d.ts │ ├── Store.d.ts │ └── Styles.d.ts └── index.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.13.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/public/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/demo/public/iframe.html -------------------------------------------------------------------------------- /demo/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/demo/src/index.tsx -------------------------------------------------------------------------------- /demo/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/demo/src/main.tsx -------------------------------------------------------------------------------- /demo/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/demo/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/package.json -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/Component/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/Message.tsx -------------------------------------------------------------------------------- /src/Component/__tests__/Console.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/__tests__/Console.spec.tsx -------------------------------------------------------------------------------- /src/Component/devtools-parser/format-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/devtools-parser/format-message.ts -------------------------------------------------------------------------------- /src/Component/devtools-parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/devtools-parser/index.ts -------------------------------------------------------------------------------- /src/Component/devtools-parser/string-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/devtools-parser/string-utils.ts -------------------------------------------------------------------------------- /src/Component/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/elements.tsx -------------------------------------------------------------------------------- /src/Component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/index.tsx -------------------------------------------------------------------------------- /src/Component/message-parsers/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/message-parsers/Error.tsx -------------------------------------------------------------------------------- /src/Component/message-parsers/Formatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/message-parsers/Formatted.tsx -------------------------------------------------------------------------------- /src/Component/message-parsers/Object.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/message-parsers/Object.tsx -------------------------------------------------------------------------------- /src/Component/react-inspector/elements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/react-inspector/elements.tsx -------------------------------------------------------------------------------- /src/Component/react-inspector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/react-inspector/index.tsx -------------------------------------------------------------------------------- /src/Component/react-inspector/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/react-inspector/util.ts -------------------------------------------------------------------------------- /src/Component/theme/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/theme/default.ts -------------------------------------------------------------------------------- /src/Component/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Component/theme/index.ts -------------------------------------------------------------------------------- /src/Hook/__tests__/Hook.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/__tests__/Hook.spec.tsx -------------------------------------------------------------------------------- /src/Hook/__tests__/Log.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/__tests__/Log.tsx -------------------------------------------------------------------------------- /src/Hook/__tests__/__snapshots__/Hook.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/__tests__/__snapshots__/Hook.spec.tsx.snap -------------------------------------------------------------------------------- /src/Hook/__tests__/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/__tests__/console.ts -------------------------------------------------------------------------------- /src/Hook/construct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/construct.ts -------------------------------------------------------------------------------- /src/Hook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/index.ts -------------------------------------------------------------------------------- /src/Hook/parse/GUID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/parse/GUID.ts -------------------------------------------------------------------------------- /src/Hook/parse/__tests__/Parse.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/parse/__tests__/Parse.spec.tsx -------------------------------------------------------------------------------- /src/Hook/parse/__tests__/__snapshots__/Parse.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/parse/__tests__/__snapshots__/Parse.spec.tsx.snap -------------------------------------------------------------------------------- /src/Hook/parse/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/parse/index.ts -------------------------------------------------------------------------------- /src/Hook/parse/methods/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/parse/methods/assert.ts -------------------------------------------------------------------------------- /src/Hook/parse/methods/count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/parse/methods/count.ts -------------------------------------------------------------------------------- /src/Hook/parse/methods/timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/parse/methods/timing.ts -------------------------------------------------------------------------------- /src/Hook/store/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/store/actions.ts -------------------------------------------------------------------------------- /src/Hook/store/dispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/store/dispatch.ts -------------------------------------------------------------------------------- /src/Hook/store/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/store/reducer.ts -------------------------------------------------------------------------------- /src/Hook/store/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Hook/store/state.ts -------------------------------------------------------------------------------- /src/Transform/BigInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Transform/BigInt.ts -------------------------------------------------------------------------------- /src/Transform/Function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Transform/Function.ts -------------------------------------------------------------------------------- /src/Transform/HTML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Transform/HTML.ts -------------------------------------------------------------------------------- /src/Transform/Map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Transform/Map.ts -------------------------------------------------------------------------------- /src/Transform/arithmetic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Transform/arithmetic.ts -------------------------------------------------------------------------------- /src/Transform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Transform/index.ts -------------------------------------------------------------------------------- /src/Transform/replicator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Transform/replicator/index.ts -------------------------------------------------------------------------------- /src/Unhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/Unhook/index.ts -------------------------------------------------------------------------------- /src/definitions/Component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/definitions/Component.d.ts -------------------------------------------------------------------------------- /src/definitions/ComponentOverrides.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/definitions/ComponentOverrides.d.ts -------------------------------------------------------------------------------- /src/definitions/Console.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/definitions/Console.d.ts -------------------------------------------------------------------------------- /src/definitions/Methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/definitions/Methods.ts -------------------------------------------------------------------------------- /src/definitions/Payload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/definitions/Payload.d.ts -------------------------------------------------------------------------------- /src/definitions/Store.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/definitions/Store.d.ts -------------------------------------------------------------------------------- /src/definitions/Styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/definitions/Styles.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/console-feed/HEAD/yarn.lock --------------------------------------------------------------------------------