New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

flux-constants

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flux-constants

A simple solution for generating Flux/React app constants

latest
Source
npmnpm
Version
0.2.2
Version published
Weekly downloads
444
33.73%
Maintainers
1
Weekly downloads
 
Created
Source

React/Flux Constants

A bit 'o sugar for those looking to quickly create Flux style constants.

Installation:

Two options:

Option 1: npm

npm install --save flux-constants

Option 2: clone

git clone https://github.com/boichee/flux-constants

Having used React + Flux and typed this far too many times:

// ComponentConstants.js
var keyMirror = require('key-mirror');

module.exports = keyMirror({
  "SOME_CONSTANT": null,
  "ANOTHER_CONSTANT": null
});

I decided I hated having to type null over and over again for no reason.

So, I created this module as an alternative. Now you can do:

// ComponentConstants.js
module.exports = require('flux-constants')([
  "SOME_CONSTANT",
  "ANOTHER_CONSTANT"
]);

Ultimately, the result is the same: A JS object that looks like this: { SOME_CONSTANT: "SOME_CONSTANT", ANOTHER_CONSTANT: "ANOTHER_CONSTANT" }

Usage:

First, create your Flux Constants file:

SomeFluxConstants.js

module.exports = require('flux-constants')([
  'MY_FIRST_CONSTANT',
  'MY_SECOND_CONSTANT'
]);

Then use the constants like this:

SomeFluxActionCreator.js

var ComponentConstants = require('../constants/ComponentConstants')

var FluxActions = {
  doSomethingFluxLike: function(data) {
    var action = {
      type: ComponentConstants.MY_FIRST_CONSTANT,
      data: data
    };
    
    AtlasDispatcher.handleAction(action);
  }
};

Enjoy!

FAQs

Package last updated on 24 Jul 2015

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