• Stars
    star
    252
  • Rank 161,312 (Top 4 %)
  • Language
  • License
    Other
  • Created over 2 years ago
  • Updated 12 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Repository for Console Ninja questions and issues

Console Ninja

Console Ninja is a VS Code extension that displays console.log output and runtime errors directly in your editor from your running browser or node application. It's like your browser dev tools console tab or terminal output from your node app, but instead of having to context switch, values are connected to your code and displayed ergonomically in your editor.

preview


Table of contents


Current status

Console Ninja is available for everyone to use for free at the moment. It's still very early days for the product, so we would appreciate if you let us know about any issues/bugs that you may find as well as any feature requests that you may have.

We plan to always have a free Community edition available with features such as displaying console.log output and runtime errors directly in your editor, showing all recorded logs and errors in the log viewer, etc. The PRO (paid) edition will be introduced at some point in the next few months and will have additional features that are documented in a separate section. So unless the feature is documented as being available in the PRO edition, it will always be available in the Community edition for free.

Before we start working on our commercial model, we will be releasing PRO features and making them available to everyone for a limited time. This will give you the opportunity to try out the PRO features for free. If you do not want to use the free PRO features before the paid version becomes available, you can explicitly disable them in the extension settings.

Supported technologies

Console Ninja currently supports the following tools:

  • Vite, including
    • web applications that were generated by Vite CLI such the ones using React, Vue, Preact, Lit, Svelte, Vanilla, TypeScript or JavaScript;
    • web applications configured to use Vite;
    • web applications powered by app frameworks that are using Vite, such as Nuxt or SvelteKit.
  • Webpack, including
  • Next.js, including first class support for client and server side logs.
  • Remix, including first class support for client and server side logs (no errors).
  • Nuxt.
  • Astro, including first class support for client and server side logs (no server side errors).
  • Shopify Hydrogen.
  • Qwik.
  • Serverless Offline.
  • Jest test runner (no errors).
  • Cypress.io end-to-end test runner.
  • http-server, live-server and serve static HTTP servers.
  • Live Server VS Code extension (off by default, can be turned on in the Console Ninja extension VS Code settings).
  • Live Preview VS Code extension (off by default, can be turned on in the Console Ninja extension VS Code settings).

In addition to the technologies above, Console Ninja also supports node app.js-like workflows including Express, Hapi, Fastify and other similar frameworks. Custom node applications are also supported. To learn more, please refer to the Universal Node applications section.

We have designed Console Ninja in such a way that adding support for new tools is fast and easy, so please let us know if there's another technology you want to use Console Ninja with.

Get started

Console Ninja is designed to fit seamlessly into most typical dev workflows. After you have installed the extension in VS Code and opened your project, you may perform the same steps you usually take:

  • run npm/pnpm/yarn script or CLI command that starts/opens your app in dev/watch/hot-reload mode *;
  • start making code changes, such as adding console.log to your code **;
  • if required ***, perform the actions within your app that trigger the modified code, ie. click a button if you have added console.log to the button click handler;

* If your app is a custom nodejs application then you need to prefix your CLI command with console-ninja, please refer to Universal Node applications for more information.

** Most modern tools run in watch mode with hot reload enabled. If your tool doesn't have such mode, then, the same way as without Console Ninja, you need to refresh your app page to make it run your modified code.

*** Sometimes your modified code may be triggered immediately upon the (hot) reload of the app. For example, when code is located in the root of a component, it will be executed when the app (re)starts. If the modified code is not triggered by the app (re)start, then, the same way as without Console Ninja, you will need to perform your app specific actions to trigger the code execution.

overview

You should now be able to see logs (and errors, if any) in your editor, next to the relevant line of code. Hovering over the console.log or error value will display more details. If you don't see the expected output, please check Console Ninja's current status.

Using the Show Output command displays the log viewer, allowing you to explore more details and navigate between logs and code.

console.log

Adding console.log to your code will display the log output in your editor, next to the relevant line of code. Hovering over the console.log value will display additional details. The log output is also displayed in the log viewer.

console.trace

Adding console.trace to your code will display the call stack trace right in your editor, next to the line of code with console.trace. The stack trace output is also displayed in the log viewer.

tracepoints

console.time

Adding console.time('some_label') and console.timeEnd('some_label') to your code will display the time it took to execute the code between the calls right in your editor, next to the line of code with console.timeEnd. The time output is also displayed in the log viewer.

timepoints

Hover tooltip

Hovering over Console Ninja output, such as logs or errors, will display more details, such as the log value, error message, and stack trace.

hover

The hover tooltip also provides a few actions displayed as icons in the top right corner of the widget, for example:

  • Show in Console Output action that opens Console Ninja's log viewer and focuses on the log entry.
  • Open Filtering Settings action that opens Console Ninja's output filtering settings.

Log viewer

Using the Show Output command displays Console Ninja's log viewer. The log viewer shows all recorded logs and errors from your running application in chronological order, with newer entries at the bottom. When the command is triggered on a line with a console.log result, the last recorded log entry is focused in the log viewer.

Each log entry provides summary details and is collapsed by default, providing a short preview that can be expanded (via mouse or Arrow Right keyboard key after it is focused) to inspect its details. Once the details are expanded, the Enter keyboard key can be used to enter the details keyboard selection/navigation mode; the Esc key can be used to exit the mode.

Each entry preview and expanded error entry details contain clickable links to the target source code. Links that point to http locations are opened in the editor by downloading the file first (a setting allows http links to be opened in the browser instead).

Similar to browser dev tools, sequential entries of a primitive type, such as string, boolean and number, and any errors, that are logged from the same place in the code and have the same value are grouped together and displayed as a single entry. The entry prefix indicates the number of entries in the group.

The following keyboard shortcuts are supported for faster navigation:

  • Arrow Up and Arrow Down to navigate to the next/previous displayed entry.
  • Home and End to navigate to the first/last displayed entry.
  • Arrow Left to collapse focused entry details and Ctrl/Cmd + Arrow Left to collapse all expanded entries details.

Additionally, the following commands (also displayed as icon buttons at the top of the log viewer) are available:

  • Clear all output from Console Ninja, including inline output.
  • Toggle log entry date/time display to show/hide date/time part of each displayed log entry.
  • Toggle auto-clearing of the output on any file change. If auto-clearing is set to off, log entries recorded prior to the latest file change are dimmed, and the file links hover icon is changed to indicate that the displayed position may have changed since the entry was recorded.
  • Toggle auto-scrolling to the last log entry when new log entries are added. If the output is manually scrolled up so that the last entry row is not visible, then auto-scrolling is paused until the output is manually scrolled to make the last entry row visible.

The log viewer supports search using the Ctrl/Cmd + F keyboard shortcut.

The log viewer can be displayed in two modes, either Beside File and In View, there is a setting to configure the mode.

status

In the Beside File mode (default, and recommended), the viewer is displayed in a new separate editor group to the left from your current editor. In this case, the view behaves like other opened editor tabs, i.e. it is visible in the Opened Editors in VS Code file explorer view.

In the In View mode, the viewer is displayed as VS Code side view. The view can also be moved to another VS Code panel. The recommended position for the viewer is to the right of the VS Code Output view in the bottom pane of your editor.

Universal Node applications

Console Ninja supports virtually any node application (starting from node v16.15.0), including Express, Hapi, Fastify, and custom node applications. Simply prefix your node app.js command with console-ninja and run console-ninja node app.js in your terminal.

shell scripts

Here are some more examples of how you may use the command:

  • console-ninja node --watch app.js
  • console-ninja npx nodemon app.js
  • console-ninja npm run dev
  • console-ninja yarn node app.js
  • console-ninja npx tsx app.ts
  • console-ninja npx ts-node app.ts

If console-ninja is not available in an external terminal session after executing Console Ninja: Start command and reloading your terminal session then you may need to add ~/.console-ninja/.bin to PATH manually. On Windows, depending on how you start apps, you may need to restart Explorer process or re-login to the system.

On UNIX-based systems (e.g. MacOS, Linux) you may source the console-ninja command for a terminal session. After that point, any commands you run in that terminal session will automatically be started with console-ninja. For example:

  • source console-ninja
  • node app1.js
  • node app2.js

Please note: if your project uses a tool that Console Ninja supports out of the box then you don't need to prefix your CLI commands with console-ninja the prefix.

Troubleshooting

If Console Ninja is not working for you as expected, the first thing to check is the extension status. You may see the status info by hovering over the extension icon in VS Code status bar.

status

The status popup information dialog explains the current state of the tool and provides some tips on what to do next.

How does it work

Console Ninja integrates with locally installed tools that are building/preparing your code, and then inspects and adjusts your code (in a way that doesn't change how it executes) before it gets to the runtime (browser or node process that runs the code).

To integrate with supported tools seamlessly, Console Ninja patches your locally installed node modules. When you stop Console Ninja in the editor with the Pause command, all patches are removed.

Console Ninja detects if you are running your tool in production mode (by checking CLI flags and process environment variables). When production mode is detected, the tool will not modify your application code even if Console Ninja is running. In the (unlikely) case that you are running production builds on your local dev computer and are deploying or sharing local builds outside of your machine, we recommend running the Console Ninja Pause command in your editor prior to running your build to guarantee that no instrumented code ends up in your production code.

Console Ninja instrumentation is limited to sending runtime values for console.log and errors to your locally running editor only (localhost hosted websocket server). The runtime data from your app is never sent outside of your local machine. If the code of your application is somehow instrumented by Console Ninja and then used outside of your local machine for some reason:

  • in browser, it will simply do nothing if the app host is not 127.0.0.1, localhost, or one of your network adapter's IP v4 addresses. To connect from a different host name, use the console-ninja.allowedHosts VS Code setting.
  • in node, it will fail to connect to localhost and will not stop your app from working.

Differences between Console Ninja and other tools

Quokka.js

Quokka.js is another awesome tool from our team. Like Console Ninja, Quokka.js allows you to see various execution results without leaving the comfort of your editor.

The fundamental difference between Console Ninja and Quokka.js is that Quokka runs new scratch files or existing code files as a self-contained program. Quokka allows you to quickly execute and iterate code in an isolated playground without unnecessary application execution. Console Ninja on the other hand runs within your application (started by your dev server, or test runner), and allows you to debug any end to end scenarios within your running app.

Wallaby.js

The Wallaby.js tool from our team runs your JavaScript and TypeScript tests immediately as you type, highlighting results in your IDE right next to your code.

While you may use Console Ninja to display logs from supported test runner CLIs, test errors are not handled by Console Ninja; this is because test errors are caught/handled by test runners themselves, and special processing is required to format and display test results.

Wallaby not only displays logs and test errors inline (and in a separate ergonomically designed view), but is also packed with features, such as inline code coverage and a time travel debugger, that provide superpowers to your current testing framework/stack, such as Jest, Vitest, Mocha. etc.

Error Lens extension

Error Lens is a VS Code extension that provides inline output for VS Code Problems output window, typically static code analysis errors from your code linter or language service, such as a linter rule violation or TypeScript types-related error.

In contrast, Console Ninja runs within your application and displays runtime logs and errors.

PRO features

We plan to always have a free Community edition available with features such as displaying console.log output and runtime errors directly in your editor, showing all recorded logs and errors in the log viewer, etc. The PRO (paid) edition will be introduced at some point in the next few months and will have additional features that are documented below. So unless the feature is documented as being available in the PRO edition, it will always be available in the Community edition for free.

Before we start working on our commercial model, we will be releasing PRO features and making them available to everyone for a limited time. This will give you the opportunity to try out the PRO features for free. If you do not want to use the free PRO features before the paid version becomes available, you can explicitly disable them in the extension settings.

Watchpoints

The Watch Value feature allows you to keep the value of any logged expression displayed. While opened, the value can easily be monitored for any changes made to it as a result of your code modifications or some actions in your app.

watchpoints

The Watch Value feature is available for both console.log and logpoints. The feature is available from the hover tooltip, as a code action (via the editor line light-bulb) and from the editor command palette.

You can watch multiple values at the same time. Value widgets in the Console Output can be closed individually (close icon or Ctrl/Cmd + W keyboard shortcut on a focused value) or all at once. Arrow keys can be used to navigate between displayed values.

Copy is available from the focused widget header and via Ctrl/Cmd + C shortcut. Search (Ctrl/Cmd + F) can be used to find any specific content inside displayed values. The Enter key can be used on a focused value widget to enter the details keyboard selection/navigation mode; and the Esc key can be used to exit the mode.

watchpoints-details

The Console Output value widgets layout can be changed from automatic (default) to manual (with drag & drop and resize support) via the Toggle Value Layout Mode command (also available as at the top of the watched Values view). Log Highlighting is also supported for displayed values via coloring the value widget header with the same highlight color as in the log viewer and editor.

Logpoints

While using the console.log feature provides an excellent way to log expression values, oftentimes you may want to display or capture expression values without modifying your code. There are also many times when inserting console.log can get tedious, such as:

  • when logging an arrow function expression return value or the function parameter value (i.e. logging e or e.prop in a.map(e => e.prop));
  • or logging a JSX expression value (i.e. logging count in <span>count is {count}</span>).
  • or logging an expression in the middle of another expression (i.e. logging the result of a.b() in a.b().c(); without calling a.b() twice).

Console Ninja Logpoints allow you to log the value of any expression in your code, without modifying your code, by simply placing a VS Code breakpoint in your code. When Console Ninja is running (and the VS Code debugger is not), the breakpoint will not stop your code, but will act as a logpoint and will log the value of the expression next to your code and to the Console Ninja log viewer.

logpoints

To use the feature, you may simply place a breakpoint (F9) on any line. If you want to be more precise about what to log on a line, you may place an inline breakpoint (Shift + F9) near/inside the expression that you would like to log.

In the example below:

  • inline breakpoint on the line 8 outputs the value of the document;
  • inline breakpoint on the line 23 outputs the value of the e parameter of the onClick button handler;
  • inline breakpoints on the line 24 and line 30 outputs the value of the count variable.

logpoints

Once a breakpoint is placed and Console Ninja is ready to output some values for it, a special ⚡️ indicator is placed at the line with the breakpoint. If a breakpoint is placed and there's no special indicator visible, it means that it is placed in a location where Console Ninja cannot find anything to log (for example, on a line without executable JS/TS code).

Function logpoints

Function logpoints are special types of Console Ninja logpoints that allow logging every line of a function and it's argument values, without modifying your code. Function logpoints are useful when you want to log the execution of a function, but do not want to insert console.log statements in the function body or place a logpoint on every line of the function.

logpoints

To use the feature, you may simply place a breakpoint (F9) on a line of code where a function/method is defined. If there are multiple expressions or functions defined on a line, you may place an inline breakpoint (Shift + F9) near/inside the function keyword or method name, or at the start of an arrow function expression (🔴() => ...).

To override the value logged for a line within the logged function, inline breakpoint (Shift + F9) may be used near/inside a specific expression within the line.

Class logpoints

Class logpoints are special types of Console Ninja logpoints that allow logging every line of all functions of a class without modifying your code.

To use the feature, you may simply place a breakpoint (F9) on a line of code where a class is defined.

To override the value logged for a line within the logged function, inline breakpoint (Shift + F9) may be used near/inside a specific expression within the line.

Hover tooltip Pro

In addition to the hover tooltip features available in the Community edition, the PRO edition includes additional actions:

  • Copy to Clipboard action that copies the logged value or the error details to the clipboard. It's also available as a code action (via the editor line light-bulb).
  • Search the Web action that opens a web browser with the error message as a search query. This action is only available for errors. The search engine can be configured in the Console Ninja extension settings via the console-ninja.searchUrl setting.

hover

Log Viewer Pro

In addition to the log viewer features available in the Community edition, the PRO edition includes additional features to provide an even more powerful way to analyze complex output.

logviewerpro

Indentation guides

Indentation guides provide a clear visual representation of the nested structure of your objects.

Expand/collapse controls

Expand/collapse controls allow you to collapse and expand nodes within nested objects. These features allow you to focus on specific sections of your logs without being overwhelmed by the sheer size and complexity of the output.

Log entry highlighting

This feature allows you to highlight log viewer entries that are logged from the same place in your code. No need to add prefixes like console.log('!!! HERE', obj) to your logs any longer - highlighted entries are decorated with a visually distinct colored & numbered indicator. Highlighting makes it easier to quickly identify specific log entries in scenarios with a lot of logs.

logviewerpro

Both console.log statements and logpoints can be highlighted.

Toggle Log Highlight command allows you to toggle highlighting of the current log location. The command is available from the editor command palette, from the log hover tooltip and as a code action (via the editor line light-bulb).

Clear All Log Highlights command allows you to clear all current log entry highlights.

Log entry grouping

Sequential entries, including logs and errors, that are logged from the same place in the code and have the same logged value are grouped together and displayed as a single entry. The entry prefix indicates the number of entries in the group. While similar Console Ninja Community edition feature only works for primitive types (just like browser dev tools), this Pro feature works for any type of entries, including large complex objects.

logviewerpro

Log entry actions

  • Copy action allows to copy selected log entry to clipboard. The action is available from the selected log entry toolbar and via Ctrl/Cmd + C shortcut.

Output Filtering Pro

Console Ninja PRO edition includes output filtering features to make working in large projects or projects with a lot of output easier.

  • Capture and display errors setting allows configuring whether to capture and display errors in the editor and in the log viewer. This is useful when you are working on a project with a lot of reported errors and you want to focus on logs only.

  • Capture and display logs only from files opened in editor setting allows configuring whether to capture and display logs from all files or only the files that are opened in your editor. This is useful when you are working on a project with a lot of files with logs and you want to focus only on output from files that you are currently working on.

  • Display logs from multiple running tools together in a single list setting allows to merge output from multiple running project tools, such as next.js server and next.js browser logs, Jest logs, etc., and display the output together in the log viewer. The merged output provides a holistic view of your running application, eliminating the need to switch between multiple output sources. This integrated view of logs from all of your tools provides an intuitive and efficient way to understand the complete behavior of your application.

multitool

  • Capture and display logs only from logpoints setting allows configuring whether to capture and display logs from console.log and other console.* statements. This is useful when you are working on a project with a lot of console.log statements and you want to focus on output from your logpoints only.

Tracepoints

Console Ninja Tracepoints allow you to trace the execution of any block of code and understand where it is being called from, without modifying your code. Similar to logpoints, you may place a tracepoint (Add Tracepoint command) on any line/column, even in the middle of some expression, or next to a function parameter. When the code execution reaches the tracepoint, Console Ninja will log the current stack trace and the value of the expression located at the tracepoint position.

tracepoints

Timepoints

Console Ninja Timepoints allow you to measure the execution time of any block of code, without modifying your code, by simply placing a pair of timepoints in your code.

First, place a timepoint (Add Timepoint command) on the line where you want to start measuring the execution time. Then, place another timepoint (Add Timepoint command) on the line where you want to stop measuring the execution time. The timepoints will be highlighted by Console Ninja, and the execution time will be displayed next to the end timepoint and in the Console Ninja log viewer.

timepoints

More Repositories

1

quokka

Repository for Quokka.js questions and issues
1,174
star
2

public

Repository for Wallaby.js questions and issues
759
star
3

jsdom-quokka-plugin

Quokka plugin to enable browser environment via jsdom
JavaScript
83
star
4

ngCliWebpackSample

JavaScript
68
star
5

atom-wallaby

Wallaby.js atom package starter
JavaScript
57
star
6

dingo

Dingo VS Code Extension
TypeScript
45
star
7

interactive-examples

Home of the JavaScript and TypeScript interactive examples
JavaScript
40
star
8

atom-quokka

Quokka.js Atom Package
Less
31
star
9

quokka-react-sample

Quokka.js with React and jsdom
JavaScript
27
star
10

wallaby-jest-sample

Testing with wallaby.js and Jest
JavaScript
20
star
11

wallaby-webpack-es6-react

Wallaby.js with React + Webpack + ES6 modules
JavaScript
17
star
12

wallaby-typescript-sample

Testing TypeScript app with wallaby.js
TypeScript
17
star
13

calculator-sample

Wallaby.js calculator sample
JavaScript
16
star
14

quokka-create-react-app

JavaScript
14
star
15

wallaby-vue-compiler

Wallaby.js compiler to display code coverage in single file .vue components
JavaScript
14
star
16

wallabify

Browserify support in wallaby.js
JavaScript
14
star
17

wallaby-create-react-app-ts

Wallaby create-react-app TypeScript
TypeScript
11
star
18

wallaby-react-component

Testing react components with wallaby.js
JavaScript
11
star
19

quokka-babel-import-sample

Quokka.js with babel and module import
JavaScript
9
star
20

wallaby-node-iojs-sample

Testing node.js or io.js app with wallaby.js
JavaScript
9
star
21

wallaby-jest-snapshots

Wallaby.js with Jest snapshots
JavaScript
8
star
22

wallaby-webpack-sample

Testing apps using webpack + babel with wallaby.js
JavaScript
8
star
23

wallaby-babel-es7-sample

Testing ES7 (via Babel) app with wallaby.js
JavaScript
7
star
24

wallaby-angular-todomvc-sample

Testing angular.js sample todo mvc app with wallaby.js
JavaScript
6
star
25

quokka-typescript-import-sample

Quokka.js with TypeScript and module import
TypeScript
6
star
26

dotenv-quokka-plugin

JavaScript
5
star
27

wallaby-create-react-app

JavaScript
5
star
28

wallaby-chai-as-promised

Wallaby.js with mocha and chai-as-promised sample
JavaScript
5
star
29

ava-sample

JavaScript
4
star
30

wallaby-std-esm

Sample repo demonstrating https://github.com/standard-things/esm support
JavaScript
4
star
31

tutorial

JavaScript
4
star
32

typescript-tsx-jsx

JavaScript
3
star
33

wallaby-polymer-sample

Wallaby.js Polymer testing sample
JavaScript
3
star
34

github-releases

Contains releases and updates that are publicly available to Wallaby users
3
star
35

walllaby-typescript-powerassert

JavaScript
3
star
36

quokka-create-react-app-ts

TypeScript
3
star
37

wallaby-vuejs-app

JavaScript
2
star
38

ava-ts-sample

JavaScript
2
star
39

wallaby-electron-node

JavaScript
2
star
40

wallaby-node-babel

JavaScript
2
star
41

wallaby-jspm-sample

Testing jspm app with wallaby.js
JavaScript
2
star
42

wallaby-vscode-remote-containers

JavaScript
2
star
43

wallaby-2190

TypeScript
2
star
44

wallaby-rewire

JavaScript
2
star
45

wallaby-gulp-adapter

Adapter from gulp plugin to wallaby.js preprocessor
JavaScript
2
star
46

wallaby-requirejs-sample

Testing require.js app with wallaby.js
JavaScript
2
star
47

wallaby-es6-sample

Testing ES2015 (ES6) code with wallaby.js via babel (6to5)
JavaScript
2
star
48

wallaby-coffeescript-sample

Testing CoffeeScript app with wallaby.js
JavaScript
2
star
49

codeclip

1
star
50

wallaby-934

JavaScript
1
star
51

typescript-es6-babel

JavaScript
1
star
52

wallaby-jest-cucumber-sample

JavaScript
1
star
53

wallaby-webpack-ts-loader

This repository demonstrates how to configure wallaby.js with webpack built-in postprocessor and typescript.
TypeScript
1
star
54

wallaby-aurelia-webpack-typescript

TypeScript
1
star
55

cn-192

TypeScript
1
star
56

wallaby-webpack-electron

JavaScript
1
star
57

wallaby-external-script

Wallaby.js external script loading example
JavaScript
1
star
58

wallaby-mocha-sinon-chai-nodejs

JavaScript
1
star
59

wallaby-3289

JavaScript
1
star
60

sublime-text-releases

1
star
61

sequelize-test

JavaScript
1
star
62

wallaby-multi-project-sample

JavaScript
1
star
63

jsdom-quokka-canvas

JavaScript
1
star
64

wallaby-browserify-sample

Testing browserify app with wallaby.js
JavaScript
1
star