ruio
v0.9.1
Published
A React developer tool for dynamically applying border styles to elements.
Downloads
77
Maintainers
Readme
⚠️ Disclaimer: Ruio is currently in an unstable state and is still under active development. Features, UI, and behaviors may change frequently. Use it with caution (for now :D).
ruio
ruio (short for React UI Outliner) is a developer tool designed for React applications that allows you to dynamically apply real-time border styles to elements at the click of a button. Inspired by the Google Chrome Inspect Tool, Ruio provides instant visual feedback to help developers identify layout issues and optimize the structure of their applications. The tool is optimized for performance and scalability, offering a seamless integration experience in any React project.
Features
- Dynamic Border Styling: Visualize borders on any element within your React app.
- Element Selection Mode: Mimics the hover effect of Chrome DevTools to highlight elements on the page.
- Click-to-Select: Make any element the new root with a click.
- Toggle Logic: Enable and disable border styling on the fly as well as memory of selected root element.
- Reset Functionality: Automatically clear all applied border styles.
- Highly Configurable: Works with different project structures and exists on top of any existing architectures.
Table of Contents
Installation
You can install Ruio via npm:
npm install ruio
Usage
To get started with Ruio, wrap your application in the RuioContextProvider:
// App.tsx
import RuioContextProvider from 'ruio';
function App() {
return (
<RuioContextProvider>{/* Your App Components Here */}</RuioContextProvider>
);
}
export default App;
As long as youre in a development environment the ruio
toggle icon will render. This button allows you to enable or disable the border visualization mode.
Now, once the toggle button is clicked, you’ll be able to hover over elements in your app's DOM tree and see real-time UI insights being applied.
Configuration
Ruio is slated for a configurative UI soon! Check back for new customized options such as:
- Outline UI depth selection.
- Crawl deeper down the DOM tree
- Option to crawl up the DOM tree
- Simultaneously crawl the DOM upwards and downwards
- Color theming
- Keyboard macros for accessibility (+ key binding)
Element Exclusion
Applying ruio-exclude
class to elements that you don't want to be considered for ruio's UI styling (inclusive). Any descendant of a component with the ruio-exclude
class will also be excluded from ruio styling.
<div className="ruio-exclude">
{/* Content that shouldn't be affected by Ruio */}
</div>
Development
To start developing Ruio locally:
- Clone the repository:
git clone https://github.com/gary-rivera/ruio.git
- Install dependencies:
npm install
- Start the development server:
npm run dev
- You can also run tests to ensure everything is working correctly:
npm run test
Trying it out
You can test ruio with the example React project:
react-redux-realworld-example-app repo
Note: since the referenced project is no longer maintained, you may have to use the --force
flag to override dependency conflicts
License
ruio
is licensed under the MIT License. See the LICENSE file for more details.