babel-plugin-ramda

2.1.1last stable release 3 years ago
Complexity Score
Low
Open Issues
N/A
Dependent Projects
202
Weekly Downloadsglobal
80,188

License

  • WTFPL
    • Noattribution
    • PublicDomainlinking
    • PublicDomaindistribution
    • PublicDomainmodification
    • Nopatent grant
    • Yesprivate use
    • PublicDomainsublicensing
    • Notrademark grant

Downloads

Readme

babel-plugin-ramda

This plugin is a transform to remove unused ramda dependencies, without forcing the user to cherry pick methods manually. This lets you use ramda naturally (aka as documented) without worrying about bundling parts you’re not using.

See also babel-plugin-lodash.

Example

Converts

import R, {map} from 'ramda';

map(R.add(1), [1, 2, 3]);

Roughly to

import add from 'ramda/src/add';
import map from 'ramda/src/map';

map(add(1), [1, 2, 3]);

Limitations

  • You must be using ES6 imports (both specifiers and default work) to load ramda.

FAQ

I receive TypeError: The plugin "ramda" didn’t export a Plugin instance
or, can I use this plugin with Babel v5?

Babel v5 is no longer supported. Use v0.1.2 for support.

Usage

Via .babelrc (Recommended)
{
  "plugins": ["ramda"]
}

or

{
  "plugins": [
    ["ramda", {
      "useES": true
    }]
  ]
}

to use the new ramda/es/ path for imports, which is available since Ramda 0.25. This is recommended as it uses ES modules rather than CommonJS. It defaults to ramda/src/ when omitted.

Via CLI
$ babel --plugins ramda script.js
Via Node API
require("babel-core").transform("code", {
  plugins: ["ramda"]
});

Dependencies

CVE IssuesActive
0
Scorecards Score
1.80
Test Coverage
No Data
Follows Semver
Yes
Github Stars
311
Dependenciestotal
7
DependenciesOutdated
6
DependenciesDeprecated
0
Threat Modelling
No Data
Repo Audits
No Data

Learn how to distribute babel-plugin-ramda in your own private NPM registry

npm config set registry  https://npm.cloudsmith.com/owner/repo
Processing...
Done
npm install babel-plugin-ramda
Processing...
Done

28 Releases

NPM on Cloudsmith

Getting started with NPM on Cloudsmith is fast and easy.