buddy(1)
buddy(1) is a build tool for js/css/html projects. It helps you manage third-party dependencies, compiles source code from higher order js/css/html languages (CoffeeScript/LiveScript/Handlebars/Stylus/Less/Jade), automatically wraps js files in module definitions, statically resolves module dependencies, and concatenates (and optionally compresses) all souces into a single file for more efficient delivery to the browser.
Current version: 0.9.3 [See Change Log below for more details]
Features
- Allows you to write js modules without the module boilerplate (similar to Node.js)
- Resolves js module dependencies automatically
- Supports lazy runtime evaluation by storing js modules as strings
- Compiles CoffeeScript, LiveScript, Handlebars, Stylus, Less, and Jade source files
- Concatenates js modules into a single file
- Runs js and css code through linters to check for syntax errors
- Watches for source changes and builds automatically
- Serves static files from specified directory on specified port
- Refreshes connected browsers after each change
- Inlines css
@imports
automatically - Supports execution of a test script after each build
- Copies libraries from GitHub to your project
- Copies assets from a local destination to your project
Installation
To avoid running buddy(1) directly as a global command, and thus avoid versioning problems across different projects, it is highly recommended that you instead install the separate buddy-cli command line interface system-wide:
$ npm -g install buddy-cli
...then create a package.json file for each project, locally installing buddy as a devDependency:
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"devDependencies": {
"buddy": "0.9.0"
}
}
$ cd path/to/project
$ npm install
Usage
Usage: buddy [options] <command> [path/to/package.json or path/to/buddy.js or path/to/buddy.json]>
Commands:
install [config] install dependencies
build [config] build js and css sources
watch [config] watch js and css source files and build changes
deploy [config] build compressed js and css sources
ls list all previously created files and directories
clean remove all previously created files and directories
Options:
-h, --help output usage information
-V, --version output the version number
-c, --compress compress output for production deployment
-l, --lint check output for syntax and logic errors
-r, --reload reload all connected live-reload clients on file change during watch
-s, --serve create a webserver to serve static files during watch
-t, --test run test command on build completion
-L, --lazy convert js modules for lazy evaluation
-v, --verbose print all messages for debugging
Examples
Generate www/main.js
by concatenating and modularizing all dependencies in src
or libs/js
referenced in src/main.js
:
package.json
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"dependencies": {
"browser-require": "git://github.com/popeindustries/browser-require.git"
},
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"build": {
"js": {
"sources": ["src", "libs/js"],
"targets": [
{
"input": "src/main.js",
"output": "www/main.js"
}
]
}
}
}
}
$ buddy build
Generate www/main.js
with references to dependencies installed via npm, ignoring Buddy specific packages:
package.json
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"dependencies": {
"browser-require": "git://github.com/popeindustries/browser-require.git",
"underscore": "1.4.4"
},
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"build": {
"js": {
"sources": ["src", "node_modules", "!node_modules/buddy", "!node_modules/browser-require"],
"targets": [
{
"input": "src/main.js",
"output": "www/main.js"
}
]
}
}
}
}
$ buddy build
First compile all CoffeeScript files in libs/src/coffee
, then generate www/main.js
by concatenating and modularizing all dependencies referenced in 'src/main.js':
package.json
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"dependencies": {
"browser-require": "git://github.com/popeindustries/browser-require.git"
},
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"build": {
"js": {
"sources": ["src", "libs/js", "libs/src/coffee"],
"targets": [
{
"input": "libs/src/coffee",
"output": "libs/js"
},
{
"input": "src/main.js",
"output": "www/main.js"
}
]
}
}
}
}
$ buddy build
Generate www/main.js
and an additional widget www/widget.js
using shared sources (avoid duplicating dependencies):
package.json
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"dependencies": {
"browser-require": "git://github.com/popeindustries/browser-require.git"
},
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"build": {
"js": {
"sources": ["src", "libs/js"],
"targets": [
{
"input": "src/main.js",
"output": "www/main.js",
"targets": [
{
"input": "src/widget.js",
"output": "www/widget.js"
}
]
}
]
}
}
}
}
$ buddy build
Compile a CoffeeScript project for Node.js, skipping module wrapping and concatenation:
package.json
{
"name": "myproject",
"description": "This is my node project",
"version": "0.0.1",
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"build": {
"js": {
"sources": ["src/coffee"],
"targets": [
{
"input": "src/coffee",
"output": "js",
"modular": false
}
]
}
}
}
}
$ buddy build
Copy project boilerplate from a local directory into the project root:
package.json
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"dependencies": {
".": {
"sources": ["../../boilerplate/project"]
}
}
}
$ buddy install
Download js dependencies browser-require
and jQuery
, then concatenate and compress to www/libs.js
for inclusion in html:
package.json
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"dependencies": {
"libs/vendor": {
"sources": [
"popeindustries/browser-require",
"jquery@1.9.1"
],
"output": "www/libs.js"
}
}
}
$ buddy install
Download visionmedia/nib
Stylus sources, specifying a specific directory to be referenced in your builds:
package.json
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"dependencies": {
"libs/src/css": {
"sources": [
"visionmedia/nib#lib/nib"
]
}
}
}
}
$ buddy install
Start a basic web server and refresh the browser (using the Live-Reload browser plugin) after each build triggered by source file changes:
package.json
{
"name": "myproject",
"description": "This is my web project",
"version": "0.0.1",
"devDependencies": {
"buddy": "0.9.0"
},
"buddy": {
"settings": {
"server": {
"directory": "www",
"port": 8080
}
}
}
}
$ buddy watch -rs
Configuration
Complete annotated buddy.js
configuration file:
exports.build = {
js: {
sources: ['a/coffeescript/source/directory', 'a/js/source/directory', '!a/js/source/directory/ignored'],
targets: [
{
input: 'a/coffeescript/or/js/file',
output: 'a/js/file/or/directory',
output_compressed: 'a/js/file/or/directory',
targets: [
{
input: 'a/coffeescript/or/js/file',
output: 'a/js/file/or/directory'
}
]
},
{
input: 'a/coffeescript/or/js/directory',
output: 'a/js/directory',
modular: false
}
]
},
css: {
sources: ['a/stylus/directory', 'a/less/directory', 'a/css/directory'],
targets: [
{
input: 'a/stylus/less/or/css/file',
output: 'a/css/file/or/directory'
},
{
input: 'a/stylus/less/or/css/directory',
output: 'a/css/directory'
}
]
}
}
exports.dependencies = {
'a/vendor/directory': {
sources: [
'popeindustries/browser-require',
'library@version'
],
output: 'a/js/file'
},
'a/source/directory': {
sources: [
'username/repo',
'username/repo#a/file/or/directory|another/file/or/directory',
'a/file/or/directory'
]
}
}
exports.settings = {
test: 'command --flags',
server: {
directory: 'a/project/directory',
port: 8000
},
plugins: {
js: {
compilers: ['a/file', 'another/file'],
compressor: 'a/file',
linter: 'a/file',
module: 'amd'
},
css: {
compilers: ['a/file', 'another/file'],
compressor: 'a/file',
linter: 'a/file'
}
}
}
Concepts
BUILD
Project Root: The directory from which all paths resolve to. Determined by location of the configuration file.
Sources: An array of directories from which all referenced files are retrieved from. Note: A js module's id is derived from it's relative path to it's source directory.
Targets: Objects that specify the input and output files or directories for each build. Targets are built in sequence, allowing builds to be chained together. Note: A js target can also have nested child targets, ensuring that dependencies are not duplicated across related builds.
Target parameters:
-
input: file or directory to build. If js (or equivalent) file, all dependencies referenced will be concatenated together for output.
If directory, all compileable files will be compiled, wrapped in module definitions (js), and output to individual js/css files.
-
output: file or directory to output to.
-
targets: a nested target that prevents the duplication of source code with it's parent target.
-
modular: a flag to prevent js files from being wrapped with a module definition.
-
output_compressed: an alternate file or directory to use for compressed output.
MODULES
Each js file is wrapped in a module declaration based on the file's location. Dependencies are determined by the use of require()
statements:
var lib = require('./my/lib');
var SomeClass = require('../someclass');
var util = require('utils/util');
lib.doSomething();
var something = new SomeClass();
util.log('hey');
Specifying a module's public behaviour is achieved by decorating an exports
object:
var myModuleVar = 'my module';
exports.myModuleMethod = function() {
return myModuleVar;
};
...or overwriting the exports
object completely:
function MyModule() {
this.myVar = 'my instance var';
};
MyModule.prototype.myMethod = function() {
return this.myVar;
};
module.exports = MyModule;
Each module is provided with a module
, exports
, and require
reference.
When require()
-ing a module, keep in mind that the module id is resolved based on the following rules:
- packages begin at the root folder specified in build > js > sources:
'Users/alex/project/src/package/main.js' > 'package/main'
- uppercase filenames are converted to lowercase module ids:
'my/package/Class.js' > 'my/package/class'
See node.js modules for more info on modules.
NOTE: require
boilerplate needs to be included on the page to enable module loading. It's recommended to install
a library like popeindustries/browser-require.
DEPENDENCIES
Dependency resources are installed from local locations or remotely from Github.
Sources: An array of local or remote resource locations.
-
destination: each group of sources will be installed to the project relative location specified.
-
identifier: github username/repo
identifiers are preferred, but it is also possible to use identifiers from the bower package manager: 'jquery', 'backbone', 'underscore'
-
versioning: github sources can specify a version by appending @
and a npm-style symantic version: '*', '1.2.3', '1.x', '~1.2.0', '>=1.2.3'
-
resources: specific resources can be specified by appending #
and a list of |
separated relative file or directory locations: 'username/repo#a/file/or/directory|another/file/or/directory'
Output: A file destination to concatenate and compress the source contents. The order of sources determines the content order.
## Changelog
0.9.3 - March 11, 2013
- fixed bug that prevented file changes from refreshing the browser during live-reload
watch
0.9.2 - March 5, 2013
- fixed bug that prevented file dependencies from being reset between builds during
watch
0.9.1 - March 5, 2013
0.9.0 - February 28, 2013
- added basic webserver with
-s --serve
flag - added support for LiveScript js files
- added support for precompiling Handlebars templates to .js
0.8.0 - February 27, 2013
- moved dependency installer, terminal printing, file watching, and fs utils into separate projects
- added basic jade html template support
- css dependencies are now able to be imported multiple times in the same build target
0.7.3 - February 18, 2013
- added ignore syntax for build sources:
["a/source/directory", "!a/source/directory/ignored"]
- added build target property to specify the name and location of compressed output:
output_compressed
- fixed an error related to index.js module renaming so that it only affects files in the root of source folders. Avoids multiple
index
modules
0.7.2 - February 17, 2013
- build target input files that are not in an existing source location, but in the project path, are added automatically
package/index.js
files are now given a module name of package
instead of package/index
0.7.1 - February 16, 2013
- added support for definining configuration in package.json under a
buddy
entry - fixed dependency install error for zipballs that don't match their unzipped folder names
- upgraded dependencies
0.7.0 - January 7, 2013
- bye bye CoffeeScript - migrated to js only source
- upgraded dependencies
0.6.11 - December 21, 2012
- fix css comment removal deleting base64 content
0.6.10 - December 21, 2012
- updated Uglify-js compressor to 2.0
0.6.9 - December 14, 2012
- fixed watch not adding new file during renames
0.6.8 - December 13, 2012
- fixed install crash
- install now overwrites previously downloaded resources
- properly handle duplicate
@import
rules while inlining
0.6.7 - December 11, 2012
- added --lazy option for generating js modules for lazy evaluation; module contents are encoded as strings to be passed to a Function constructor on first require()
0.6.6 - December 6, 2012
- added live-reload support for watch command with --reload
- re-enabled linting support
0.6.5 - December 5, 2012
- fix for watch command firing repeated change events
- fix for watch command not properly building targets on change
- fix for child target building shared resources
0.6.4 - December 4, 2012
- fix for --test not displaying both stdout and stderr
- added wrapping of batch files in module definitions if options.modular is not false
- fix for building targets that contain no source
0.6.3 - December 4, 2012
- fix for watch command attempting to watch a source that doesn't exist
- added support for default json config file type
0.6.2 - December 4, 2012
- fix for css @import inlining
0.6.1 - December 3, 2012
- added --test to watch command
0.6.0 - December 3, 2012
- complete rewrite for async file operations
- added --test flag for executing a command after build
- added --verbose flag for outputting detailed notifications during build
- added ls command to list all generated files
- added inlining of '@import' rules for all css source types
- simplified dependency resource parsing on install; only parse 'main' field in component.json/package.json
0.5.4 - November 23, 2012
- regression fix for clean command
- improved .buddy-filelog force clean
- improved notifications for install and clean commands
0.5.3 - November 23, 2012
- refactored install command behaviour; no longer uses git operations, changed syntax for specifying version ('@') and resources ('#'), added ability to list several resources [breaking change]
- .buddy-filelog now stores relative paths for compatibility on different systems
- file deletions limited to resources under the project root
0.5.2 - Novemver 20, 2012
- added watch command; handle add, remove, and change of source files
0.5.1 - Novemver 14, 2012
- added clean command to remove all generated files
- added hidden .buddy-filelog file for tracking files changes between sessions
- fix for false-negative module wrapping test
0.5.0 - November 13, 2012
- compile command renamed to build [breaking change]
- changed module naming for compatibility with recent versions of Node.js (camel case no longer converted to underscores) [breaking change]
- changed configuration file type to 'js' from 'json'; added dependencies and settings [breaking change]
- changed configuration target parameters to input/output from in/out [breaking change]
- changed configuration target parameter to modular from nodejs [breaking change]
- concatenated js modules no longer self-booting; need to
require('main');
manually [breaking change] - require boilerplate no longer included in generated source; install popeindustries/browser-require or equivalent [breaking change]
- removed watch command (temporarily) [breaking change]
- added install command and project dependency management
- added plugin support for compilers, compressors, linters, and modules; added support for custom plugins
- added code linting
- all errors now throw
- complete code base refactor
License
(The MIT License)
Copyright (c) 2011 Pope-Industries <alex@pope-industries.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.