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

pronouns.js

v3.3.3

Published

A simple pronoun and gender system for JS & TS, including support for custom pronouns.

Downloads

14

Readme

package-version-npm npm-downloads npm-dependency-versions license-npm npm-types github-latest-commit github-release github-stars

A simple system to keep track of pronouns — and genders — with JavaScript and TypeScript.

A simple and lightweight JavaScript library for managing and creating pronouns. Supports custom pronouns! I got carried away one day and now this library also has genders.

Contibutions welcome.

The programmatic (API) documentation is available here. Built using Docma. For browser usage, see the "browser" section below.

For examples, see the examples/ folder.

Installation

Install from NPM. Type definitions are included for you TypeScript people (including me), so there's no need to try and install @types/pronouns.js as a devDependency — it probably doesn't exist anyways.

$ npm i pronouns.js

Browser functionality

You may use any one of the following imports:

<!--
	Recommended for production - does not rely on a CDN, fixed version
	You must download the minified webpack.js file from the GitHub repository and then include it like so
 -->
<script src="../dist/webpack.js"></script>
<!--
	Recommended for testing and development
	"https://unpkg.com/pronouns.js" automatically redirects to the specified file of the latest version
	i.e. "https://unpkg.com/[email protected]/dist/webpack.js"
	you may use tag @latest to select the latest version (i.e. "https://unpkg.com/pronouns.js@latest")
	For production, it is HIGHLY RECOMMENDED you use a fixed version.
 -->
<script src="https://unpkg.com/pronouns.js"></script>
<!--
	Secondary CDN - not tested
	"https://cdn.jsdelivr.net/npm/pronouns.js" serves latest version, default file
	add version tag similar to unpkg for a specified version
	For production, it is HIGHLY RECOMMENDED you use a fixed version.
 -->
<script src="https://cdn.jsdelivr.net/npm/pronouns.js@latest/dist/webpack.js"></script>

Support

There is no support for CJS modules (require()). Use ESM instead (import ... from ...). If it works for one version, that's a coincidence. There is no intended support for CommonJS modules, only the modular syntax introduced in ES6. See MDN's JavaScript module guide.