babel-plugin-transform-decorators
Compile class and object decorators to ES5
Last updated 8 years ago by hzoo .
MIT · Repository · Original npm
$ cnpm install babel-plugin-transform-decorators 
SYNC missed versions from official npm registry.

babel-plugin-transform-decorators

Compile class and object decorators to ES5

Example

(examples are from proposal)

Simple class decorator

@annotation
class MyClass { }

function annotation(target) {
   target.annotated = true;
}

Class decorator

@isTestable(true)
class MyClass { }

function isTestable(value) {
   return function decorator(target) {
      target.isTestable = value;
   }
}

Class function decorator

class C {
  @enumerable(false)
  method() { }
}

function enumerable(value) {
  return function (target, key, descriptor) {
     descriptor.enumerable = value;
     return descriptor;
  }
}

Installation

npm install --save-dev babel-plugin-transform-decorators

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-decorators"]
}

Via CLI

babel --plugins transform-decorators script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-decorators"]
});

References

Current Tags

  • 6.24.1                                ...           latest (8 years ago)

1 Versions

  • 6.24.1                                ...           8 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (5)
Dev Dependencies (1)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org