Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-auto-symbol-description

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-auto-symbol-description

A Babel plugin to automatically set Symbol descriptions.

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Auto Symbol Description Build Status npm

A Babel plugin to automatically set Symbol descriptions.

Note: Babel 7 is supported in version 2.0+.

Note: Babel 6 is supported in version 1.0+. Keep using version 0.0.1 for Babel 5 support.

Use Cases

Redux

Very useful with Redux if you use Symbols for action types:

In:

// TodoActions.js
export const CREATE = Symbol();
export const CREATE_SUCCESS = Symbol();
export const CREATE_FAILURE = Symbol();

Out (something like this):

// TodoActions.js
export const CREATE = Symbol('TodoActions.CREATE');
export const CREATE_SUCCESS = Symbol('TodoActions.CREATE_SUCCESS');
export const CREATE_FAILURE = Symbol('TodoActions.CREATE_FAILURE');

Then use these constants in a reducer:

// TodoReducer.js
import * as TodoActions from '../actions/TodoActions';

export function TodoReducer(state, action) {
  switch (action) {
  case TodoActions.CREATE:
    // Handle create
    break;
  case TodoActions.CREATE_SUCCESS:
    // Handle create success
    break;
  case TodoActions.CREATE_FAILURE:
    // Handle create failure
    break;
  default:
    return state;
  }
}

Symbol descriptions are only useful for debugging, so idealy you would only include this transformation in development.

Installation

npm install -D babel-plugin-auto-symbol-description

.babelrc:

{
  "env": {
    "development": {
      "plugins": ["auto-symbol-description"]
    }
  }
}

Notes

This plugin won't transform any Symbol calls with an argument, and it only works for assignments and variable declarations for now. Let me know if there is demand for the transformation when setting an object property or any other use cases.

Keywords

FAQs

Package last updated on 25 May 2019

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc