@boost/decorators
TypeScript icon, indicating that this package has built-in type declarations

5.0.0 • Public • Published

Decorators - Boost

build status npm version

Experimental decorators for common patterns.

import { Bind, Memoize } from '@boost/decorators';

class Example {
  @Bind()
  referencedMethod() {
    return this; // Class instance
  }

  @Memoize()
  someExpensiveOperation() {
    // Do something heavy
  }
}

Features

  • @Bind - Autobind a method's this to the class context.
  • @Debounce - Defer the execution of a method in milliseconds.
  • @Deprecate - Mark a property, method, or class as deprecated.
  • @Memoize - Cache and return the result of a method execution.
  • @Throttle - Throttle the execution of a method to a timeframe in milliseconds.

Installation

yarn add @boost/decorators

Documentation

Readme

Keywords

Package Sidebar

Install

npm i @boost/decorators

Weekly Downloads

20,232

Version

5.0.0

License

MIT

Unpacked Size

60.1 kB

Total Files

76

Last publish

Collaborators

  • milesj