Socket
Socket
Sign inDemoInstall

@babel/plugin-proposal-class-static-block

Package Overview
Dependencies
61
Maintainers
4
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @babel/plugin-proposal-class-static-block

Transform class static blocks


Version published
Weekly downloads
5.6M
decreased by-19.35%
Maintainers
4
Install size
8.05 MB
Created
Weekly downloads
 

Package description

What is @babel/plugin-proposal-class-static-block?

The @babel/plugin-proposal-class-static-block npm package allows developers to use the static block feature in class definitions within JavaScript code. This feature is a proposal for ECMAScript and is not yet part of the official language specification. The plugin enables Babel to compile code containing static blocks so that it can run in current JavaScript environments.

What are @babel/plugin-proposal-class-static-block's main functionalities?

Static Initialization Blocks

Static initialization blocks allow developers to write a block of code within a class definition that is executed once when the class is created. This is useful for setting up static properties or performing one-time setup for the class.

class MyClass {
  static {
    // Initialization code
    this.myStaticProperty = 'value';
  }
}

Other packages similar to @babel/plugin-proposal-class-static-block

Changelog

Source

v7.21.0 (2023-02-20)

:rocket: New Feature
  • babel-core, babel-helper-create-class-features-plugin, babel-plugin-proposal-class-properties, babel-plugin-proposal-private-methods, babel-plugin-proposal-private-property-in-object
    • #15435 feat: Implement privateFieldsAsSymbols assumption for classes (@fwienber)
  • babel-helper-create-regexp-features-plugin, babel-plugin-proposal-regexp-modifiers, babel-standalone
  • babel-cli, babel-core, babel-generator, babel-plugin-transform-destructuring, babel-plugin-transform-modules-commonjs, babel-plugin-transform-react-jsx, babel-traverse
  • babel-parser, babel-types
  • babel-generator, babel-helpers, babel-parser, babel-plugin-proposal-decorators, babel-plugin-syntax-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
  • babel-parser
  • babel-core
  • babel-generator, babel-parser, babel-plugin-transform-typescript
:bug: Bug Fix
  • babel-plugin-transform-typescript
  • babel-core
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-class-properties, babel-plugin-proposal-class-static-block, babel-plugin-proposal-private-methods, babel-plugin-transform-classes, babel-plugin-transform-new-target
  • babel-parser, babel-plugin-transform-flow-comments, babel-plugin-transform-flow-strip-types, babel-types
:nail_care: Polish
  • babel-parser
    • #15400 polish: improve "await as identifier" error in modules (@JLHwung)
:house: Internal
:microscope: Output optimization

Readme

Source

@babel/plugin-proposal-class-static-block

Allow parsing of class static blocks

See our website @babel/plugin-proposal-class-static-block for more information.

Install

Using npm:

npm install --save-dev @babel/plugin-proposal-class-static-block

or using yarn:

yarn add @babel/plugin-proposal-class-static-block --dev

Keywords

FAQs

Last updated on 20 Feb 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc