ui-debug-kit
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

UI Debug Kit

Various tools for debugging the layout and rendering of React component trees.

Installation

  • 1) npm install ui-debug-kit --save-exact

The --save-exact flag is recommended (to disable version-extending), since this package uses Explicit Versioning (Release.Breaking.FeatureOrFix) rather than SemVer (Breaking.Feature.Fix).

For FeatureOrFix version-extending (recommended for libraries), prepend "~" in package.json. (for Breaking, prepend "^")

Usage

Example:

// render function of a React component-class
render() {
	[...]

	// if condition is true at time of render, a red outline box is displayed for 3s (by default), with the given text overlaid
	if (someCondition) {
		FlashComp(this, {wait: 0, text: `Look at me!`});
	}

	return [...];
}

Readme

Keywords

Package Sidebar

Install

npm i ui-debug-kit

Weekly Downloads

8

Version

0.0.7

License

MIT

Unpacked Size

35.7 kB

Total Files

24

Last publish

Collaborators

  • venryx