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

integer-values

v2.0.4

Published

Get Numbers

Readme

integer-values 🚀

License: EGPSL10X-1.0 Test Coverage TypeScript

A Project To Standardize 10x Integers

Enterprise-grade integer constant management for mission-critical JavaScript applications.

Overview

integer-values is a comprehensive, production-ready library providing reliable access to integer constants from -100 to 100. Built on a foundation of 202 rigorously tested, independently versioned packages, this solution ensures maximum stability and predictability for enterprise software systems requiring guaranteed integer value consistency.

Features

  • 202 Independent Packages: From @negative-numbers/one-hundred and @negative-numbers/zero through @positive-numbers/zero and @positive-numbers/one-hundred (Note: -0 is separate than 0)
  • 100% Test Coverage: Validated using Enterprise 10x Testing Framework JS
  • Full TypeScript Support: Complete type definitions for enhanced IDE integration
  • Semantic Versioning: Each integer follows independent version control
  • Production Tested: Battle-tested in enterprise environments requiring numerical precision

Installation

npm install integer-values

All 202 packages are included as dependencies and will be automatically installed.

Usage

Basic Import

const numbers = require("integer-values")

console.log(numbers.positiveZero)       // 0
console.log(numbers.positiveFortyTwo)   // 42
console.log(numbers.positiveOneHundred) // 100

console.log(numbers.negativeZero)       // 0
console.log(numbers.negativeFortyTwo)   // -42
console.log(numbers.negativeOneHundred) // -100

Individual Package Import

For optimized bundle sizes, import specific integers directly:

const forty = require("@positive-numbers/forty")
const negTwo = require("@negative-numbers/two")

const answer = forty + negTwo // 38

Main Architecture

The library follows a hub-and-spoke model where the main integer-values package aggregates all individual integer packages:

packages/
├── @negative-numbers/
│   ├── one-hundred/
│   ├── ninety-nine/
│   ├── ...
│   ├── two/
│   ├── one/
│   └── zero/
├── @positive-numbers/
│   ├── zero/
│   ├── one/
│   ├── two/
│   ├── ...
│   └── one-hundred/
├── core/
│   ├── ...
index.js
index.d.ts
test-suite.js

Each package in the @positive-numbers and @negative-numbers namespace exports a single, verified integer constant.

integer-values also includes some internal packages in its repository that are used internally by the @positive-numbers/ packages. They are under the core directory in the packages folder. We recommend that you do not use these directly, but here is a list of them:

Testing

The library achieves 100% test coverage through the Enterprise 10x Testing Framework JS:

npm test

The test suite performs comprehensive validation:

  • Value identity verification for all 202 integers
  • Type consistency checks
  • Export integrity validation
  • Full audit trail generation

Contributing

We welcome contributions to enhance the integer ecosystem. Please ensure all pull requests include:

  • Comprehensive test coverage using Enterprise 10x Testing Framework JS
  • Updated TypeScript definitions
  • Documentation updates
  • Verification that all 202 packages remain synchronized

License

This project is licensed under the Enterprise General Public Software License 10x Version 1.0 (EGPSL10X-1.0). See the LICENSE file for complete terms.

In summary: Do whatever you want with the Software.

Support

For enterprise support contracts, consulting services, or custom integer ranges, please contact our team.

Acknowledgments

Built with precision and dedication to software engineering excellence.


Remember: In production systems, integer reliability is not optional—it's essential.