decorator-cache-getter

Simple decorator for caching getters on first access

MIT License

Downloads
8.9K
Stars
13
Committers
2

Decorator Cache Getter

Simple decorator for caching getters on first access.

Installation

npm install decorator-cache-getter --save

Usage

import { cache } from "decorator-cache-getter";

class User {
  @cache
  get friends() {
    return sql("SELECT * FROM users WHERE ...")
  }
}

const user = new User()
const friends = await user.friends;

License

MIT