Socket
Book a DemoInstallSign in
Socket

decoration-helper

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

decoration-helper

A tiny library to help decorate functions or classes in the ugly messy pre-standardized decorator spec era.

latest
Source
npmnpm
Version
1.1.2
Version published
Maintainers
1
Created
Source

Decoration Helper

This is a absolutely tiny library to help decorate functions or classes in a prettier way in the ugly messy pre-standardized decorator spec era of Javascript.

Example

Features:

  • Natural composition with decorate(...).with(fn)
  • Decorator style composition with apply(...).to(fn)
  • Functional pipe(...)(fn) and compose(...)(fn) included.

Installation

If you're here, you already know.

yarn add decoration-helper

Usage

To achieve this

@inject('app', 'auth')
@withRouter
@observer
function tomato() {
    console.log("tomato");
}

export default tomato;

you write this:

import { apply } from 'decoration-helper';

function tomato() {
    console.log("tomato");
}

export default apply(
    inject('app', 'auth'),
    withRouter,
    observer
).to(tomato);

or alternatively this, if you prefer:

import { decorate } from 'decoration-helper';

function tomato() {
    console.log("tomato");
}

export default decorate(tomato).with(
    observer,
    withRouter,
    inject('app', 'auth')
);

Note: The order is not reversed when using decorate(obj).with(...decorators)

pipe() and compose()

The proper functional approach would be to use pipe() and compose() as described by Eric Elliot. This post has more details about it.

// Analogous to decorate(fn).with(...);

import { pipe } from 'decoration-helper';

function tomato() {
    console.log("tomato");
}

export default pipe(
    observer,
    withRouter,
    inject('app', 'auth')
)(tomato);



// Analogous to apply(...).to(fn);

import { compose } from 'decoration-helper';

function tomato() {
    console.log("tomato");
}

export default compose(
    inject('app', 'auth'),
    withRouter,
    observer  
)(tomato);

License

MIT

Keywords

functional

FAQs

Package last updated on 12 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts