Note: This page covers Parcel 1, the documentation for Parcel 2 is being worked on here: v2.parceljs.org

CoffeeScript

Supported extensions: coffee

CoffeeScript is a language that transpiles to JavaScript, which allows you to use a shorter syntax and other features like the existential operator, shorter array-splicing syntax, block regular expressions and more.

# log.coffee
console.log 'Hello there!'
// index.js
import './log'

Help us improve the docs

If something is missing or not entirely clear, please file an issue on the website repository or edit this page.