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

@emeraldemperaur/vector-sigma

v1.4.19

Published

Dynamic Form Orchestrator: NPM Package

Readme

💠 Vector Sigma

Dynamic Form Orchestrator 📦

NPM Version Changesets Release Status

Overview

Fields, Input Validation and Submission can be defined and parametized in real-time predicated on a JSON (JavaScript Object Notation) xForm definition or builder object pattern.

Key Features

Documentation

Installation

npm install @emeraldemperaur/vector-sigma

Peer Dependencies

npm install react@latest react-dom@latest sass@latest

Usage

var s = "JavaScript/TypeScript Code Snippet";
alert(s);

Screenshots

Automation Workflow Use Case

Web Application Use Case

Design Tenets

var s = "JavaScript/TypeScript Code Builder Snippet";
alert(s);
import { Theme, File, Dropdown } from '@emeraldemperaur/vector-sigma';

const App = () => {
  return (
    
    <Theme>
      <File/>
      <Dropdown/>
    </Theme>
  );
}
import { Container, Column, Row, CheckboxGroup, Dropdown, File, RangeSlider } 
from '@emeraldemperaur/vector-sigma';
import { Theme } from '@emeraldemperaur/vector-sigma';
import { Form, Formik } from 'formik'
import * as Yup from 'yup'


const App = () => {
  return (
    <Container fluid>
      <Row>
        <Column span={9}>
        <Formik 
          initialValues={{
            dropdownInput: 'Zaibatsu',
          }}
          
          validationSchema={Yup.object({
            dropdownInput: Yup.string().required('Dropdown selection is required'),
          })}

          onSubmit={(values) => {
            console.log(values);
          }}
    >
      {({ values }) => (
        <Form>
            <Theme>
            <File alias='inputFile' width={3}/>
            <Dropdown alias="dropdownInput" width={8} inputLabel="Dropdown Element" inputtype="dropdown-outline" value="Zaibatsu" 
                inputoptions={
                    [
                    {optionid: 1, 
                    optionvalue: "Kaiju", 
                    optionurl:"https://github.com/emeraldemperaur", 
                    text: "Kaiju"},
                    {optionid: 2, 
                    optionvalue: "Meka", 
                    optionurl:"https://www.mekaegwim.ca", 
                    text: "Meka"},
                    {optionid: 3, 
                    optionvalue: "Godzilla", 
                    optionurl:"https://www.me.ca", 
                    text: "Godzilla"},
                    {optionid: 4, 
                    optionvalue: "Zaibatsu", 
                    optionurl:"https://www.npmjs.com/package/@emeraldemperaur/vector-sigma", 
                    text: "Zaibatsu"},
                    ]}/>
            </Theme>
            <button type="submit" style={{ marginTop: 20 }}>Submit</button>
        </Form>
      )}
        </Formik>
        </Column>
      </Row>
    </Container>
  );
}

Tool Stack

TypeScript JavaScript RollupJS Vite React SASS Zod Radix UI Formik Yup Testing Library Jest GitHub Actions

Changeset Versioning Synopsis

npm install --save-dev @changesets/cli
# Changeset project initializer
npx changeset init
git checkout -b new-changeset-branchname
# Changeset - patch, minor, major versioning
npx changeset

# PreRelease mode (alpha)
npx changeset pre enter alpha

# PreRelease mode (beta)
npx changeset pre enter beta

# Exit PreRelease mode 
npx changeset pre exit
git add .
git commit -m "Changeset :: commit message"
git status
# confirm clean working tree before push
git push origin new-changeset-branchname
git checkout prometheus
git pull origin prometheus