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

@amcorvi/loadout

v0.1.2

Published

A personlized loadout of utility libraries that ease my development process

Readme

LoadOut

A personlized loadout of utility libraries that ease my development process. A useful analogy would be bring a toolbox to a job site as to oppose the running back and forth tools.

The end of "What to the name of the NPM package again?"

Packages

Some of the packages that compose this module are:

  • ramdajs - Functional Programmgin Library
  • chance - Random Data Generation
  • rxjs - Reactive Programming Library
  • esm - Enables user of ECMAScript modules
  • yaml - Allows the conversion to and from YAML (useful for generating schema files)
  • rimraf - cross platform file removal library
  • faker - Random Data Generation
  • mathjs - Math library cause well...MATH 😅
  • json-schema-faker - Use JSON Schema along with fake generators to provide consistent and meaningful fake data for your system.

Configuration File

In the root directory there is a file named moduleConfig.yaml. This file is responsible for the structuring and building of this module. Following the YAML format the top level object should have field names matching the import name of the NPM module. Each package can specify a new different unique module name and any subfolder modules the package may contain. Hence a moduleConfig.yaml containing:

ramda:
module_name: r
rxjs:
module_name: rx
namespaces: [ testing, operators, websockets, ajax ]
chance:
module_name: chance
mathjs:
module_name: math
yaml:
module_name: yaml

would allow an import of yaml, ramda and rxjs' filter operator by writing the follow:

import loadout from '@amcorvi/yaml
import ramda from '@amcorvi/loadout/r'
import { range } from '@amcorvi/loadout/rxjs';
import { map, filter } from '@amcorvi/loadout/rxjs/operators';


const data = loadout.yaml.parse(yamlFile)

const {identity} = ramda
ramda.map(identity, [1, 2, 3])

  range(1, 200).pipe(
      filter(x => x % 2 === 1),
      map(x => x + x)
      ).subscribe(x => console.log(x));

Note: The configuration cross check packages listed in package.json under the dependecies field. Ensure that any package listed moduleConfig is also listed as a npm dependecy.

Note: Packages listed as npm dependencies but not listed in the moduleConfig.yaml will automatically be made available as part of loadout

Scripts

  • clean - will remove all subfolder modules
  • create - will generate subfolder allowing for '@amcorvi/loadout/rxjs' imports
  • update - will update the index.js file which is responsible for primary import (i.e. '@amcorvi/loadout')
  • setup - will run clean create update sequentially and in that order.