Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

inferno-devtools

Package Overview
Dependencies
Maintainers
4
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inferno-devtools

Provides support for React's Dev Tools for Inferno

latest
Source
npmnpm
Version
7.4.11
Version published
Maintainers
4
Created
Source

Dev Tools

Inferno has a development tools module which allows you to inspect the component hierarchies via the React Chrome Developer Tools plugin. You will get a new tab called React in your Chrome DevTools. This shows you the root Inferno components that were rendered on the page, as well as the subcomponents that they ended up rendering.

By selecting one of the components in the tree, you can inspect and edit its current props and state in the panel on the right. In the breadcrumbs you can inspect the selected component, the component that created it, the component that created that one, and so on. If you inspect an Inferno element on the page using the regular Elements tab, then switch over to the React tab, that element will be automatically selected in the React tree.

You can install the React Chrome Dev Tools plugin here.

Enabling Inferno Dev Tools

To enable the Inferno development tool you must install the inferno-devtools module and then import {initDevTools} from 'inferno-devtools'; and call initDevTools() before the initial render(...).

The module translates Inferno components so that they are visible via the React Chrome plugin. Be sure to de-activate the tools in production as the development tool module adds extra overhead that will impact your application.

Keywords

babel

FAQs

Package last updated on 03 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts