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

endlessgui

v0.7.5

Published

You need add <Ewgui> <ButtonEw/> etc... </Ewgui>

Readme

Getting Started with Endless Gui

npm i endlessgui

EwGui Logo

Components:

| Component | Props | Description | | :-------- | :----------------------| :--------- | | HeaderEW | title | Label for the name of your project | | LabelEW | title | Label for the name of one or a group of controls | | SliderEW | title, min, max, step, value, onChange | Classic Range input | | ButtonEW | title, onClick | Button | | TogglerEW | title_a, title_b, onClick_a, onClick_b | Slider between two states | | DropdownEW | items, onSelect | Drop-down list | | RadioEW | title_a, title_b, onClick | Radio button | | UniversalUploaderEW | onImageLoaded, onFileLoaded, hidden, | Drag and drop field for uploading files such as jpeg, png, fbx, obj, pdf | | ImageUploaderEW | onImageLoaded hidden, | Drag and drop field for loading jpeg, png | | ColorPickerEW| WIP | Color palette can be selected by cursor or typed in |

Basic import:

import EwGui, { ButtonEW, LabelEW, HeaderEW, SliderEW ... } from "./components/ewGui";

Simple example:


export function App(){

  const [slider, setSlider] = useState(0)
  const [urlFile, setUrlFile] = useState(null)

  const itemsGui = [
    { label: 'First', value: '1' },
    { label: 'Second', value: '2' },
    { label: 'Third', value: '3' },
  ]
  
  const [ dropdown, setDropdown] = useState(itemsGui[0])
  
  const handleDropdown = (item) => {
    setDropdown(item);
  };

  const handleButtonEvent = ()=>{
    console.log('EwGui is work')
  }

  return(
    <>
      <EwGui width={'300px'}>
        <HeaderEW title={'Test GUI'}/>
        <SliderEW title={'SLider'} min={0} max={1} step={0.1} value={slider} onChange={setSlider} />
        <DropdownEW items={itemsGui} onSelect={handleDropdown}/>
        <UniversalUploaderEW onImageLoaded={setImage} onFileLoaded={setUrlFile} hidden={false}/>
        <ButtonEW title={'Save'} onClick={handleButtonEvent}/>
        ...
      </EwGui>
    </>
  )
}

Components UI

HeaderEW

<HeaderEW title={}/>
/** Use props */
title={'Endless Work Gui'} 

LabelEW

<LabelEW title={}/>
/** Use props */
title={'Color mode'} 

SliderEW

<SliderEW title={} min={} max={} step={} value={} onChange={} />
 /** Add value & event */
const [slider, setSlider] = useState(0)

/** Use props */
title={'Slider'} 
min={0} 
max={10} 
step={0.01} 
value={slider} 
onChange={setSlider}

ButtonEW

 <ButtonEW title={'Hello'} onCLick={()=>alert('Hello world')} width={'100%'}/>
/** Use props */
title={'Button'} 
onCLick={()=>{}} 
width={'100%'}

TogglerEW

 <TogglerEW title_a={} title_b={} onClicke_a={} onClicke_b={}/>
/** Use props */
title_a={'On'}  /** first state */
title_b={'Off'}  /** second state */
onClicke_a={()=>{}}  /** first event */
onClicke_b={()=>{}} /** second event */

DropdownEW

 <DropdownEW items={} onSelect={}/>
/** Add value, array & event */
const itemsGui = [
  { label: 'First', value: '1' },
  { label: 'Second', value: '2' },
  { label: 'Third', value: '3' },
]
const [ dropdown, setDropdown] = useState(itemsGui[0])

/** The first one in the list will be displayed first */
const handleDropdown = (item) => {
  setDropdown(item);
};

/** Use props */
items={itemsGui} 
onSelect={handleDropdown}

RadioEW

<RadioEW title_a={} title_b={} onCLick={}/>
/** Use props */
title_a={'On'}  /** first state */
title_b={'Off'}  /** second state */
onClicke_a={()=>{}}  /** first event */

UniversalUploaderEW

<UniversalUploaderEW onImageLoaded={} onFileLoaded={} hidden={}/>
 /** Add value & event */
const [image, setImage] = useState(null)
const [urlFile, setUrlFile] = useState(null)

/** Use props */
onImageLoaded={setImage} 
onFileLoaded={setUrlFile} 
hidden={false} /** if false drag & drop field hide */

ImageUploaderEW

<ImageUploaderEW onImageLoaded={} hidden={}/>
 /** Add value & event */
const [image, setImage] = useState(null)

/** Use props */
onImageLoaded={setImage} 
hidden={false} /** if false drag & drop field hide */

ColorPickerEW

work in progress