2.0.0 • Published 4 years ago

@cloudstek/cache v2.0.0

Weekly downloads
8
License
MIT
Repository
-
Last release
4 years ago

@cloudstek/cache

Simple key/value (cache) store.

CircleCI Coverage Status

It doesn't do anything fancy and it doesn't have a fancy name. Yet I needed a simple key/value store with optional support for expiration of items.

Features

  • Optional expiration of items (without expiration it works as a simple k/v store)
  • Per-item configurable TTL.
  • Iterable storage
  • Written in typescript
  • Support writing to JSON or in-memory.

Requirements

  • NodeJS >= 10
  • NPM / Yarn

Installation

Using yarn (preferred):

yarn add @cloudstek/cache

Using NPM:

npm install @cloudstek/cache

Development

Clone this repository to get started. You can replace yarn in the commands below with npm if you use NPM.

Build code and watch for changes

During development you can build the code once and have typescript watch for changes and recompile automatically.

yarn run watch

Checking code for style

To check the code for style correctness run:

yarn run lint

Running tests

Tests are run using Ava and coverage is generated using Istanbul. To run the tests run:

yarn run build
yarn run test

Building the code for release

To build the code for release (e.g. npm publish), run:

yarn run build:dist

Also check out

sindresorhus/conf: Simple config handling for your app or module

2.0.0

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago