npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-prop-editor

v0.0.8

Published

A React component for a Properties Editor

Downloads

6

Readme

alt text Build Status Coverage Status

Motivation

Properties Editor (Visual Studio like) in React.

Installation

npm install react-prop-editor --save

State of Project

Proof of concept (not refactored js/css code)

Run Demo

npm install -g create-react-app
npm install
npm start

alt text

Example Config you can pass the component

let config = {
    "groups": [
        {
            "name": "Memcached",
            "properties": [
                {
                    "name": "memcached.sess_locking",
                    "type": "boolean",
                    "defaultValue": true,
                    "help": "Use session locking.",
                    "link": "http://php.net/manual/de/memcached.configuration.php#ini.memcached.sess-locking"
                },
                {
                    "name": "memcached.sess_consistent_hash",
                    "type": "boolean",
                    "defaultValue": false,
                    "help": "Memcached session consistent hash mode. If set to On, consistent hashing is used for session handling. When consistent hashing is used, one can add or remove cache node(s) without messing up too much with existing keys.",
                    "link": "http://php.net/manual/de/memcached.configuration.php#ini.memcached.sess-consistent-hash"
                },
                {
                    "name": "memcached.sess_binary",
                    "type": "boolean",
                    "defaultValue": false,
                    "help": "Use memcached session binary mode. Libmemcached replicas only work if binary mode is enabled",
                    "link": "http://php.net/manual/de/memcached.configuration.php#ini.memcached.sess-binary"
                },
                {
                    "name": "memcached.compression_type",
                    "type": "option",
                    "defaultValue": "fastlz",
                    "options": ["fastlz", "zlib"],
                    "help": "Set the compression type, valid values are: fastlz, zlib. The default is fastlz.",
                    "link": "http://php.net/manual/de/memcached.configuration.php#ini.memcached.compression-type"
                },
                {
                    "name": "memcached.sess_lock_wait",
                    "type": "number",
                    "defaultValue": 150000,
                    "help": "Session spin lock retry wait time in microseconds. Be carefull when setting this value. Valid values are integers, where 0 is interpreted as the default value. Negative values result in a reduces locking to a try lock. The default is 150000.",
                    "link": "http://php.net/manual/de/memcached.configuration.php#ini.memcached.sess-lock-wait"
                }
            ],
            "help": "http://php.net/manual/de/book.memcached.php"
        }
    ]
};

<App>
    <PropEditor config={config} handleInputChange={somefunctionhere} />
</App>