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

preamp

v0.0.3

Published

PreAmp works cohesively to create an experience where the user can jump between planning, buying or measuring.

Readme

PreAmp

PreAmp works cohesively to create an experience where the user can jump between planning, buying or measuring.

Available Scripts

Generate Barrels

Generate files that rollup exports from modules and allows for bundling of imports.

Import all components through /components and types through /types.

# Navigate to documentation and generate barrels

cd packages/documentation
yarn gen:barrels

# Navigate to core and generate barrels
cd ../core
yarn gen:barrels

Compile Script Files

Compile ts script files used for generating documentation information.

# Navigate to documentation if in root

cd packages/documentation
yarn compile

Generate data for documentation pages

Read and parse all component and documentation data in core and documentation.

Parsed component and documentation information are outputted into config/componentData and config/documentationData.

The parsed data is used to auto generate PreAmps documentation pages.

# Navigate to documentation if in root

cd packages/documentation
yarn gen:docs

Start localhost

Start documentation pages at localhost:4001.

gen:barrels for core and documentation, compile and gen:docs commands are automatically run before starting server.

# run from root

yarn start

Packages

Mixer

PreAmp Mixer is VideoAmp's CSS framework.

Core

PreAmp Core in VideoAmp's component library.

How to run a release

$ yarn release

Run lint and tests on all preamp packages, runs lerna publish for a new release of PreAmp, and publishes a changelog of the release on Github using lerna-changelog.

Routing

The Table of contents defines the navigation and routing structure.

The url is based of this paradigm /header/primaryGroup/secondaryGroup/tertiaryGroup/anchors

Adding documentation

Documentation is automatically generated on start.

In order for the documentation to render, the file structure in packages/documentation must match the hierarchy of the table of contents.

Add either a markdown file or a React component under a directory matching the section name.

Linking packages

For development, Mixer must be linked to the root directory in order for styles to be imported into documentation pages.

# Navigate to mixer and yarn link it

$ cd packages/mixer
$ yarn link

# Navigate back to documentation and link mixer

$ cd ../documentation
$ yarn link "@preamp/mixer"

# Navigate to core and yarn link it

$ cd ../core
$ yarn link

# Navigate back to documentation and link core

$ cd ../documentation
$ yarn link "@preamp/core"

lerna-changelog

$ yarn run lerna-changelog <FLAGS>

Runs lerna-changelog commands. This pulls Github PRs and outputs a markdown changelog to be copied into a Github release.

lerna-changelog is a utility that outputs changelogs from Lerna monorepos. Documentation on lerna-changelog's CLI can be found here.

lerna

$ yarn run lerna <COMMAND>

Runs Lerna commands.

Lerna is used to manage the multiple packages we have in this repository. Documentation on Lerna's commands and configuration can be found here.