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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@fidelisppm/utils

v1.3.0

Published

Miscellaneous helper methods to make life a bit simpler

Downloads

42

Readme

Utils

A collection of helper methods to make our lives easier.

Geographic State Methods

getStates()
Returns an object where keys are state abbreviations and values are full state names.

getStateOptions(selected = [])
Accepts an optional array of values and applies the "selected" attribute to all options whose value matches a value in the array. Returns an <optgroup> populated with <option value="Alaska">Alaska</option> etc.

getMiniStateOptions()
Returns an array of <option value="AL">AL</option> etc.

Input Verification Methods

verifyEmail(email)
Returns a boolean. True if the provided string argument looks like an email address.

verifyPhone(phone)
Returns a boolean. True if the provided string argument is exactly ten digits.

verifyZip(zip)
Returns a boolean. True if the provided string argument is exactly five digits.

verifyZipPlusFour(zip)
Returns a boolean. True if the provided sting argument is five or nine digits, with an optional dash between the fifth and sixth digit.

verifyNumber(string)
Returns a boolean. True if all characters in the provided string are digits.

verifyDecimal(string)
Returns a boolean. True if all characters in the provided string are digits, or if exactly one character is a period followed by one or more digits.

Banner Helper Methods

resetBannerMessage()
Removes any existing banner message from the page and restores an empty div to the beginning of the document body.

showSuccessBanner(message)
Displays a banner with a blue background at the top of the page. Provided text is displayed in the banner.

showWarningBanner(message)
Displays a banner with a yellow background at the top of the page. Provided text is displayed in the banner.

showErrorBanner(message)
Displays a banner with a red background at the top of the page. Provided text is displayed in the banner.

Other Misc. Methods

isArrayUnique(arr)
Returns a boolean. True if the array contains no duplicate values.

getParam(param)
Returns the value of a provided GET parameter if it exists. Returns null otherwise.

genUUID()
Returns a randomly generated string UUID.

makeReadableDate(dateString)
Transform an ISO-8601 date string and return a human-readable one.

makeReadablePhone(phone)
Transform a string into a readable phone number. If there are more than ten digits present in the passed value, only the first ten will be returned.

parseISO8601String(iso8601)
Parse an ISO-8601 string and return an array of parts found by the regex.

genLocaltimeDateFromISO8601String(iso8601)
Generate a date in localtime, and set that date using a provided ISO-8601 string. Returns a Date object.