us-state-converter
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!
Installation
NPM:
npm install us-state-converter
Yarn:
yarn add us-state-converter
Usage
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)
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)
You can get the USPS abbreviation directly by using the .abbr()
method
const abbr = states.abbr('Illinois')
console.log(abbr)
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)
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)
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)
That's it for now! I would love any feedback or ideas on how I can expand this.