Skip to content

Repository files navigation

timeproxy

npm versionBuild StatusCoverage StatusY2K Compliant

Simple library for time constants

Now with template literal support

Creating time constants can be a pain. You want to name them after what they are, like SESSION_TIMEOUT or MAX_REQUESTS, but you also want to make sure the code reflects how long of a period it is. Meet timeproxy.

Using some quite clever ES2015 proxies, you can now have both.

Usage

npm install timeproxy

timeproxy works by parsing the name of the "constant" you specify and returning the amount of milliseconds you require.

importtpfrom'timeproxy';constTIMEOUT_LIMIT=tp.FIVE_SECONDS;constAGE_LIMIT=tp.ONE_WEEK_AND_SIX_DAYS;

If you prefer, you can use template literals instead:

importtpfrom'timeproxy';constTIMEOUT_LIMIT=tp`five seconds`;constAGE_LIMIT=tp`1 week and 6 days`;constSESSION_TIMEOUT=tp`${60} minutes`;

There's support for seconds, minutes, hours, days and weeks. You can even write fractions!

Here's a few examples of what you can do:

importtpfrom'timeproxy';constREQUEST_TIMEOUT=tp.THIRTY_SECONDS;constUPDATE_DELAY=tp.HALF_A_SECOND;constCOOKIE_EXPIRATION=tp.FOUR_WEEKS;constIN_ALMOST_A_MINUTE=tp.IN_FIFTY_NINE_SECONDS;constREQUEST_TIMEOUT=tp`thirty seconds`;constUPDATE_DELAY=tp`.5 seconds`;constCOOKIE_EXPIRATION=tp`4 weeks`;constIN_ALMOST_A_MINUTE=tp`IN_59-SEconds`;

I've written a blog post about this as well - please refer to it for more examples.

Contribute!

If there are features you'd like to see in this tiny library, please let me know through an issue. If you feel up for it, please create a pull request and I'll make sure to look at it as soon as possible.

About

A tiny library for creating time based constants

Resources

Stars

23 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages