CoffeeScript의 컴파일과 Minify, 하나의 파일로 만들기 그리고 자동 변경체크하여 컴파일 하기를 좀 더 쉽게 하는 Coffeebar를 알아보자
1) Coffeebar 기능과 설치
- 기능
Supports Literate CoffeeScript
Robust file watching
Cross-platform
Minification
Concatenation of multiple source files
Shows the actual source line when concatenated files have a compile error
- 설치
$ sudo npm install -g coffeebar
/usr/local/bin/coffeebar -> /usr/local/lib/node_modules/coffeebar/bin/coffeebar
coffeebar@0.2.0 /usr/local/lib/node_modules/coffeebar
├── mkdirp@0.3.5
├── xcolor@0.1.0
├── coffee-script@1.6.2
├── commander@1.1.1 (keypress@0.1.0)
├── glob@3.1.21 (inherits@1.0.0, graceful-fs@1.2.0, minimatch@0.2.11)
├── beholder@0.1.2 (async@0.2.6, minimatch@0.2.11)
└── uglify-js@2.2.5 (optimist@0.3.5, source-map@0.1.19)
2) CLI 사용법
- 옵션들
Usage: coffeebar [options] [path ...]
Options:
-h, --help output usage information
-V, --version output the version number
-b, --bare compile without a top-level function wrapper
-m, --minify minify output files
-o, --output <path> output path
-s, --silent suppress console output
-w, --watch watch files for changes
- 컴파일 하기
$ coffeebar test.coffee
- 소스 디렉토리(src)를 지정하여 컴파일 디렉토리(lib) 지정하기
$ coffeebar src -o lib
- 소스 디렉토리(src)를 지정하여 하나의 파일로 합치기
$ coffeebar src -o joined.js
- 소스 디렉토리(src)를 지정하여 컴파일 디렉토리(lib) 지정하고 .coffee 소스 파일 변경되면 자동 컴파일하기
$ coffeebar src -o lib -w
3) API 사용법
- coffeebar(inputPaths, [options]) : inputPaths에 소스 디렉토리 지정하면 options에 따라 수행을 결정한다
- 옵션들
bare - (boolean) CoffeeScript compiler option which omits the top-level function wrapper if set to true.
minify - (boolean) Minify output files. Defaults to false.
output - (string) The path to the output file. If the path has a file extension, all files will be joined at that location. Otherwise, the path is assumed to be a directory.
silent - (boolean) Suppress all console output. Defaults to true.
watch - (boolean) Watch all files and directories for changes and recompile automatically. Defaults to false.
- 예 : output 위치와 합칠 파일을 지정
// use the api in source
var coffeebar = require('coffeebar');
coffeebar('src', {output: 'lib/app.js'});
$ npm install
$ npm test
<참조>
- 원문 : nmpjs.org coffeebar
'Languages > CoffeeScript' 카테고리의 다른 글
[CoffeeScript] 핵심 문법 정리하기 (1) (0) | 2013.01.31 |
---|---|
[CoffeeScript] 문법 사용하기 (5) - regex, html (0) | 2013.01.29 |
[CoffeeScript] 문법 사용하기 (4) - class, extends (0) | 2013.01.27 |
[CoffeeScript] 문법 사용하기 (3) - @ :: 표현 (0) | 2013.01.27 |
[CoffeeScript] 문법 사용하기 (2) - 조건, 반복문 (0) | 2013.01.24 |