Category Selected:

commandbox

Blog

Sign Up for Box Training before ColdFusion Summit

Brad Wood |  September 17, 2015
The Box guys from Ortus are going to be hanging out (and speaking) at Adobe's 2015 installment of ColdFusion Summit.  We're so stoked about hanging out in Vegas that we've decided to show up early and put on a deep dive Box training before CF Summit that f...
Read More

CommandBox 2.1.1 Released

Brad Wood |  August 24, 2015

We have put out a patch release 2.1.1 for CommandBox today.  This fixes a bug in the "update" and "outdated" commands that caused them to error after you had installed packages from an endpoint other than ForgeBox.  Note, packages installed from HTTP(S) and Git endpoints will always show as outdated and will always update since those endpoints don't provide a way to ...

Read More

CommandBox Connection this Wednesday at 11am CDT

Brad Wood |  August 17, 2015

Following on the heels of our CommandBox 2.1.0 release, we will be hosting a CommandBox Connection webinar this Wednesday (Aug 19th) at 11am CDT.  Come hang out for an informal...

Read More

CommandBox 2.1.0 Released

Brad Wood |  August 13, 2015

We've just released a minor release of CommandBox, our CLI, REPL, Package Manager, and Embedded server.  This version has a number of small fixes to CommandBox as well as the embedded libraries like Runwar.  We've polished up some things like piping content and new high-res icons. &nb...

Read More

ColdBox 4 Book has arrived

Luis Majano |  May 04, 2015

We are excited to finally announce the availability of the ColdBox 4 printed and kindle book. Enjoy!

 

Book Release Galore!

Luis Majano |  April 24, 2015

We are so excited to announce the general availability of 5 new Ortus Books in print and kindle format about our products.  We have been hard at work to produce high quality documentation and transition all our documentation to book format.  We only have two more in the works right now with a target release of May (ColdBox + ContentBox).  So without further ado, here are the 5 new books f...

Read More

CommandBox 1.1.1 Patch Release

Brad Wood |  April 22, 2015

We've released a very small patch release (1.1.1) for CommandBox.  This is to address a small bug in the upgrade process from 1.0.0.  This update affects the underlying loader libraries so you will need to download the latest binary and replace the old binary on your file system.  The first time you run "box" the update will be applied.

The downloads ar...

Read More

CommandBox 1.1.0 Released

Brad Wood |  April 13, 2015

We are very excited to announce the immediate release of CommandBox version 1.1.0.  This is a maintenance release that addresses much of the feedback and bug reports that we received from the community since our 1.0.0 release a few month ago.  The response to CommandBox 1.0 has been phenomenal and we are excited to see so many CFML developers finding a new level of productivity.  Thanks to everyone who has used CommandBox thus far and provided great feedback and ideas.

Read More

CommandBox - Mastering Parameters

Brad Wood |  March 06, 2015

CommandBox is unique from other CLIs in a couple ways.  My favorite one is that everything is built around the concept of commands.  Not only does this organize how CFML scripts can be run from the command line, it also greatly simplifies writing custom commands since you have a platform to build upon.  Part of that platform is automatic parameter handling, which brings me to my second favorite thing about CommandBox.  Many CLIs only allow for positional parameters, while CommandBox also allows for the familiar syntax of named parameters plus the convenience of flags for quick boolean controls.

Read More

Using CommandBox to manage dependencies

Brad Wood |  March 05, 2015

Dependencies are other packages that are required by another package for it to run. A simple package may have no dependencies, or it may have many. There are two types of dependencies: a regular dependency or a development dependency. Regular dependencies are ones required for operation of the main package. Development dependencies are optional and only necessary if you plan on making changes to the package you're installing. Dev dependencies would include testing frameworks or build tools.

When a package is installed, CommandBox will read its dependencies (from the box.json) and recursively install them as well. This encourages developers to write small, reusable libraries for everyone to use. When installing via a package manager, you don't have to worry about getting all the pieces installed.

Read More