Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-style-editor

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-style-editor

A React component that displays and edits CSS, similar to the browser's DevTools.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.9K
increased by2.95%
Maintainers
1
Weekly downloads
 
Created
Source

React Style Editor

Npm Version   License   Size

A React component that displays and edits CSS, similar to the browser's DevTools.

Features

  • Parses any CSS string and formats it in a familiar fashion
  • Validates each rule and each declaration using the browsers's own engine
  • Facilitates commenting the CSS code through checkbox toggling
  • Allows easy additions by clicking next to the desired location
  • Has no dependencies (other than React)
  • Is customizable through classes
  • Offers 3 output formats:
    • the code with preserved formatting
    • the prettified code
    • a machine-friendly model of the code (recursive array of objects)

Installation

npm i react-style-editor

Usage

import React from 'react'
import StyleEditor from 'react-style-editor'

class Component extends React.Component {

    render() {
        return (
            <StyleEditor
                css={`
                    div {color:red;}
                    /* Hello, World! */
                    @media screen {
                        article {
                            display: flex;
                        }
                    }
                `}
            />
        )
    }
}

Ideas for the future

  • Live demo
  • Color swatches (similar to the browser)
  • Dropdown suggestions for properties/values (similar to the browser)
  • Ability to copy/delete fragments of code
  • Keyboard support for TAB, : and UP, DOWN
  • Prop for automatically mutating the code after validation
  • Theme support (similar to the browser)
  • Toggle view mode: tree/original
  • Undo/redo
  • Better code quality through propTypes
  • Better comment rendering (some comments look better inline rather than block)
  • Filters (similar to the browser)
  • Error messages displayed in the warning-sign's tooltip

Keywords

FAQs

Package last updated on 03 May 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc