GitXplorerGitXplorer
s

timeproxy

public
23 stars
1 forks
1 issues

Commits

List of commits on branch master.
Unverified
5e2d5c84932935c4f4af779f334e5be7962586b0

Include types

sselbekk committed 3 years ago
Unverified
3323482916945c212b37f4d9479257c8f904567f

Add TypeScript types, and some longer periods

sselbekk committed 3 years ago
Unverified
cd8a0c946de779aa56033138714836fbb21c4b52

typo 💩

sselbekk committed 7 years ago
Unverified
5c3441c159e030f309af0925e969fe5e49e7597c

1.2.1

sselbekk committed 7 years ago
Unverified
9e212f2d0e46b9e7158fb94eb429457412bfa226

Return 0 if called with no or falsy arguments

sselbekk committed 7 years ago
Unverified
bda393b3de062b62dd527865e194f5a7ad412059

1.2.0

sselbekk committed 7 years ago

README

The README file for this repository.

timeproxy

npm version Build Status Coverage Status Y2K 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.

import tp from 'timeproxy';

const TIMEOUT_LIMIT = tp.FIVE_SECONDS;
const AGE_LIMIT = tp.ONE_WEEK_AND_SIX_DAYS;

If you prefer, you can use template literals instead:

import tp from 'timeproxy';

const TIMEOUT_LIMIT = tp`five seconds`;
const AGE_LIMIT = tp`1 week and 6 days`;
const SESSION_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:

import tp from 'timeproxy';

const REQUEST_TIMEOUT = tp.THIRTY_SECONDS;
const UPDATE_DELAY = tp.HALF_A_SECOND;
const COOKIE_EXPIRATION = tp.FOUR_WEEKS;
const IN_ALMOST_A_MINUTE = tp.IN_FIFTY_NINE_SECONDS;

const REQUEST_TIMEOUT = tp`thirty seconds`;
const UPDATE_DELAY = tp`.5 seconds`;
const COOKIE_EXPIRATION = tp`4 weeks`;
const IN_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.