Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hunghg255/rsbuild-plugin-react-inspector
Rsbuild plugin react inspector
https://github.com/hunghg255/rsbuild-plugin-react-inspector
inspector plugin react rsbuild
Last synced: about 2 months ago
JSON representation
Rsbuild plugin react inspector
- Host: GitHub
- URL: https://github.com/hunghg255/rsbuild-plugin-react-inspector
- Owner: hunghg255
- License: mit
- Created: 2024-01-04T17:01:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-31T10:46:47.000Z (8 months ago)
- Last Synced: 2024-11-11T20:35:08.475Z (2 months ago)
- Topics: inspector, plugin, react, rsbuild
- Language: JavaScript
- Homepage:
- Size: 7.85 MB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-rspack - rsbuild-plugin-react-inspector
README
## Playground
[Playground](https://github.com/hunghg255/rsbuild-plugin-react-inspector/tree/main/playground)
## 📖 Introduction
A rsbuild plugin which provides the ability that to jump to the local IDE when you click the element of browser automatically.
## 📦 Installation
```bash
npm install rsbuild-plugin-react-inspector -D
```## 🦄 Usage
### Configuration in `rsbuild.config.ts`
```ts
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';import { pluginReactInspector } from 'rsbuild-plugin-react-inspector';
export default defineConfig({
plugins: [pluginReact(), pluginReactInspector()],
});
```