babel-plugin-transform-class-properties
## Installation
Last updated 9 years ago by hzoo .
MIT · Repository · Original npm · Tarball · package.json
$ gnpm install babel-plugin-transform-class-properties 
SYNC missed versions from official npm registry.

babel-plugin-transform-class-properties

This plugin transforms es2015 static class properties as well as properties declared with the es2016 property initializer syntax.

Example

Below is a class with four class properties which will be transformed.

  class Bork {
    //Property initializer syntax
    instanceProperty = "bork";
    boundFunction = () => {
      return this.instanceProperty;
    }

    //Static class properties
    static staticProperty = "babelIsCool";
    static staticFunction = function() {
      return Bork.staticProperty;
    }
  }

  let myBork = new Bork;

  //Property initializers are not on the prototype.
  console.log(myBork.prototype.boundFunction); // > undefined

  //Bound functions are bound to the class instance.
  console.log(myBork.boundFunction.call(undefined)); // > "bork"

  //Static function exists on the class.
  console.log(Bork.staticFunction()); // > "babelIsCool"

Installation

npm install --save-dev babel-plugin-transform-class-properties

Usage

Via .babelrc (Recommended)

.babelrc

// without options
{
  "plugins": ["transform-class-properties"]
}

// with options
{
  "plugins": [
    ["transform-class-properties", { "spec": true }]
  ]
}

Via CLI

babel --plugins transform-class-properties script.js

Via Node API

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

Options

spec

boolean, defaults to false.

Class properties are compiled to use Object.defineProperty. Static fields are now defined even if they are not initialized.

References

Current Tags

  • 6.24.1                                ...           latest (8 years ago)
  • 7.0.0-beta.3                                ...           next (7 years ago)

48 Versions

  • 7.0.0-beta.3                                ...           7 years ago
  • 7.0.0-beta.2                                ...           7 years ago
  • 7.0.0-beta.1                                ...           7 years ago
  • 7.0.0-beta.0                                ...           7 years ago
  • 7.0.0-alpha.20                                ...           7 years ago
  • 7.0.0-alpha.19                                ...           7 years ago
  • 7.0.0-alpha.18                                ...           7 years ago
  • 7.0.0-alpha.17                                ...           7 years ago
  • 7.0.0-alpha.16                                ...           7 years ago
  • 7.0.0-alpha.15                                ...           7 years ago
  • 7.0.0-alpha.14                                ...           7 years ago
  • 7.0.0-alpha.12                                ...           7 years ago
  • 7.0.0-alpha.11                                ...           7 years ago
  • 7.0.0-alpha.10                                ...           7 years ago
  • 7.0.0-alpha.9                                ...           7 years ago
  • 7.0.0-alpha.8                                ...           7 years ago
  • 6.24.1                                ...           8 years ago
  • 7.0.0-alpha.7                                ...           8 years ago
  • 7.0.0-alpha.3                                ...           8 years ago
  • 7.0.0-alpha.1                                ...           8 years ago
  • 6.23.0                                ...           8 years ago
  • 6.22.0                                ...           8 years ago
  • 6.19.0                                ...           8 years ago
  • 6.18.0                                ...           8 years ago
  • 6.16.0                                ...           8 years ago
  • 6.11.5                                ...           8 years ago
  • 6.10.2                                ...           8 years ago
  • 6.9.1                                ...           8 years ago
  • 6.9.0                                ...           8 years ago
  • 6.8.0                                ...           8 years ago
  • 6.6.0                                ...           9 years ago
  • 6.5.2                                ...           9 years ago
  • 6.5.0-1                                ...           9 years ago
  • 6.5.0                                ...           9 years ago
  • 6.4.0                                ...           9 years ago
  • 6.3.13                                ...           9 years ago
  • 6.3.2                                ...           9 years ago
  • 6.3.0                                ...           9 years ago
  • 6.2.4                                ...           9 years ago
  • 6.2.2                                ...           9 years ago
  • 6.1.20                                ...           9 years ago
  • 6.1.18                                ...           9 years ago
  • 6.1.17                                ...           9 years ago
  • 6.1.10                                ...           9 years ago
  • 6.1.5                                ...           9 years ago
  • 6.1.4                                ...           9 years ago
  • 6.0.14                                ...           9 years ago
  • 6.0.2                                ...           9 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (1)

Copyright 2013 - present © cnpmjs.org | Home |