A micro library to produce any singular noun into plural
I was curious to learn about how to build a library, what are the thought-processes behind it, what are the technical stuff you need to know etc. This was the primary reason PluralJS came into conception.
via npm
npm install pluraljs --savevia yarn
yarn add pluraljsvia CDN direct link
<script src="https://cdn.jsdelivr.net/npm/pluraljs/dist/pluraljs.umd.min.js"></script>
<!-- or -->
<script src="https://unpkg.com/pluraljs/dist/pluraljs.umd.min.js"></script>direct download
curl -o https://unpkg.com/pluraljs/dist/pluraljs.umd.min.jsThe PluralJS is single responsibility library. It takes only a noun (with optional count parameter) and produce plural noun out of it.
| parameter | description | type | required | example |
|---|---|---|---|---|
| word | a word to pluralize | string | yes | pluralJs('cat') // cats |
| count | pluralize the word based on count | number | no | pluralJs('cat', 3) // cats pluralJs('cat', 1) // cat |
const pluralJs = require('pluraljs');
console.log(pluralJs('cat')); // cats
console.log(pluralJs('cat', 1)); // cat
console.log(pluralJs('cat', 3)); // catsimport pluraJs from 'pluraljs';
console.log(pluralJs('cat')); // cats
console.log(pluralJs('cat', -4)); // cat<script src="https://cdn.jsdelivr.net/npm/pluraljs/dist/pluraljs.umd.min.js"></script>
<script>
console.log(pluralJs('cat')); // cats
console.log(pluralJs('cat', '4')); // cats
</script>| Product without words pluralization | Product using PluralJS |
|---|---|
![]() |
![]() |
1.1.0
ENHANCEMENTAdded ability to pass count parameter
1.0.0
FEATUREReleased first stable version
Kalpesh Singh (@knowkalpesh)
- The core logic and testing file are borrowed from Blake Embrey's Pluralize
- Card screenshot used from Chakra UI
- Those lovely cats artwork used for branding is from Undraw
kalpeshsingh/PluralJS is licensed under the MIT license.

