kofu-loader
v1.0.0
Published
kofu loader module for webpack
Downloads
4
Readme
kofu-loader
Compile KofuScript to JavaScript.
Getting Started
To begin, you'll need to install kofuscript
and kofu-loader
:
npm install --save-dev kofuscript kofu-loader
Then add the plugin to your webpack
config. For example:
file.kofu
# Assignment:
number = 42
opposite = true
# Conditions:
number = -42 if opposite
# Functions:
square = (x) -> x * x
# Arrays:
list = [1, 2, 3, 4, 5]
# Objects:
math =
root: Math.sqrt
square: square
cube: (x) -> x * square x
# Splats:
race = (winner, runners...) ->
print winner, runners
# Existence:
alert "I knew it!" if elvis?
# Array comprehensions:
cubes = (math.cube num for num in list)
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.kofu$/,
loader: 'kofu-loader',
},
],
},
};
Alternative usage:
import coffee from 'kofu-loader!./file.kofu';
And run webpack
via your preferred method.
Options
Type: Object
Default: { bare: true }
Options for KofuScript. All possible options you can find here.
Documentation for the transpile
option you can find here.
ℹ️ The
sourceMap
option takes a value from thecompiler.devtool
value by default.
ℹ️ The
filename
option takes a value from webpack loader API. The option value will be ignored.
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.kofu$/,
loader: 'kofu-loader',
options: {
bare: false,
transpile: {
presets: ['@babel/env'],
},
},
},
],
},
};
Examples
KofuScript and Babel
From KofuScript Beta documentation:
KofuScript generates JavaScript that uses the latest, modern syntax. The runtime or browsers where you want your code to run might not support all of that syntax. In that case, we want to convert modern JavaScript into older JavaScript that will run in older versions of Node or older browsers; for example, { a } = obj into a = obj.a. This is done via transpilers like Babel, Bublé or Traceur Compiler.
You'll need to install @babel/core
and @babel/preset-env
and then create a configuration file:
npm install --save-dev @babel/core @babel/preset-env
echo '{ "presets": ["@babel/env"] }' > .babelrc
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.kofu$/,
loader: 'kofu-loader',
options: {
transpile: {
presets: ['@babel/env'],
},
},
},
],
},
};
Literate KofuScript
For using Literate KofuScript you should setup:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.kofu$/,
loader: 'kofu-loader',
options: {
literate: true,
},
},
],
},
};
Contributing
Please take a moment to read our contributing guidelines if you haven't yet done so.