
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
us-state-converter
Advanced tools
A package that converts U.S. state abbreviations to full names and back
The US State Converter package is a module that I made to convert state names to their USPS abbreviations or vice versa. I tried to make it as simple as possible but would any feedback!
NPM:
npm install us-state-converter
Yarn:
yarn add us-state-converter
Import the package first
const states = require('us-state-converter')
You can get a full list of objects for each US state and territory by calling the function with no parameters
const listOfStates = states()
console.log(listOfStates)
/* This will return an array of objects for each state including the state name, USPS, ISO, and USCG abbreviations, and the demonym for each state */
A single object for an individual state can be retrieved by passing a USPS abbreviation or a full state name
const wiscObject = states('WI')
console.log(wiscObject)
/* Will log: {
name: 'Wisconsin',
usps: 'WI',
demonym: 'Wisconsinite',
iso: 'US-WI',
altAbbr: [ 'Wis', 'Wisc' ],
uscg: 'WS'
}
*/
You can get the USPS abbreviation directly by using the .abbr() method
const abbr = states.abbr('Illinois')
console.log(abbr) // <- Logs 'IL'
You can do a reverse search using the USPS abbreviation to get the full name of the state, as well, using the .fullName() method
const state = states.fullName('MN')
console.log(state) // <- Logs 'Minnesota'
If you need a list of just the 50 states without territories or DC, the .only50() method will do that for you
const fiftyStates = states.only50()
console.log(fiftyStates)
/* This will log the same array of objects as states(), only with the territories and DC removed */
Finally, I added a method to find the demonym for any state, for funsies. the method is simply called .demonym()
const cheesehead = states.demonym('Wisconsin')
console.log(cheeshead) // <- Logs 'Wisconsinite', actually 🧀
That's it for now! I would love any feedback or ideas on how I can expand this.
FAQs
A package that converts U.S. state abbreviations to full names and back
The npm package us-state-converter receives a total of 18,124 weekly downloads. As such, us-state-converter popularity was classified as popular.
We found that us-state-converter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.