Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 713 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 713 Bytes
Atom and all repositories under Atom will be archived on December 15, 2022. Learn more in our official announcement

Coffee Cash Build Status

Simple CoffeeScript caching based on a SHA-1 of the contents.

Installing

npm install coffee-cash

Usage

CoffeeCache = require 'coffee-cash'
CoffeeCache.setCacheDirectory('/tmp/cache/coffee')
CoffeeCache.register()

# CoffeeScript is now registered so you can require .coffee files
# and they will be automatically use cached JavaScript when available
require('./foo.coffee')