Skip to content
This repository was archived by the owner on Nov 4, 2019. It is now read-only.

Write ReasonML and Bucklescript in your existing babel projects

License

Notifications You must be signed in to change notification settings

mike-engel/babel-plugin-bucklescript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Oct 23, 2018
4216ae3 · Oct 23, 2018

History

38 Commits
Jul 21, 2017
Apr 25, 2018
Jul 23, 2017
Feb 23, 2018
Jul 23, 2017
Sep 15, 2017
Oct 5, 2018
Jul 21, 2017
Jul 21, 2017
Jul 21, 2017
Apr 25, 2018
Oct 23, 2018
Oct 23, 2018

Repository files navigation

babel-plugin-bucklescript

Write ReasonML and Bucklescript in your existing babel projects

Functional programming is cool. ReasonML is cool. Bucklescript is cool. But you may not have the opportunity to start a new project or rewrite an existing one in those languages. In that case, babel-plugin-bucklescript is here for you!

babel-plugin-bucklescript lets you easily add ReasonML or Bucklescript projects to your existing codebases via a babel plugin. It relies on existing tools like bs-platform to work. And since bs-platform is amazingly fast, so is this plugin. It works for node-style require calls as well as ES2015 import statements.

Installation

To get started, add babel-plugin-bucklescript and bs-platform to your project's dev dependencies.

# with good ol' npm
npm install -D babel-plugin-bucklescript bs-platform

# with yarn
yarn add -D babel-plugin-bucklescript bs-platform

After that's finished, add the plugin to your babel dependencies. By default, this plugin will assume you're using the js package spec. For more information, see the bucklescript manual on using bsb.

{
  "plugins": ["babel-plugin-bucklescript"]
}

If, however, you want to compile to amdjs or es6, you can pass that in as an option.

{
  "plugins": [
    ["babel-plugin-bucklescript", { "module": "es6" }]
  ]
}

Finally, you'll want to add a bsconfig.json file in the root of your project. Note that by default, bsb will compile to a folder called lib in the root of your project, no matter where your source code is. Take that into account when building your project. As of right now, this plugin only supports that compilation directory.

{
  "name": "your-cool-project",
  "sources": ["src"],
  "bs-dependencies": ["reason-react"],
  "reason": {
    "react-jsx": 2
  },
  "package-specs": ["commonjs"]
}

Basic example

/* In a file called test.re */
let add x y => x + y
// In a file called index.js
const { add } = require("./test.re");

console.log(add(1, 2)) // -> 3

TODO

  • Full examples
  • Tests
  • Integration testing with multiple types of projects

Contributing

Issues and Pull requests are both welcomed! Prettier is enabled by default as a pre-commit hook, but feel free to add it to your editor.

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.