mimosa-cjsx

A Coffeescript JSX/React compiler for Mimosa

Usage no npm install needed!

<script type="module">
  import mimosaCjsx from 'https://cdn.skypack.dev/mimosa-cjsx';
</script>

README

mimosa-cjsx

Overview

This is a Coffeescript + React/JSX compiler for the Mimosa build tool. It will precompile your .cjsx files using coffee-react

Usage

Add 'cjsx' to your list of modules. That's all! Mimosa will install the module for you when you start mimosa watch or mimosa build.

Functionality

This module will compile your Coffeescript + React/JSX files.

Default Config

cjsx: {
  lib: undefined,
  extensions: ["cjsx"]
}
  • lib: You may want to use this module but may not be ready to use the latest version of the coffee-react. Using the lib property you can provide a specific version of coffee-react if the one being used by this module isn't to your liking. To provide a specific version, you must have it npm installed into your project and then provide it to lib. For instance: lib: require("coffee-react")
  • extensions: an array of strings, the extensions of your Coffeescript React/JSX files.