Skip to content
Chris Phillips edited this page Jan 24, 2019 · 4 revisions

cfc_loader is a library for loading data into ColdFusion components. Given a component and data, the library will use the data to set the component's properties. Using item_type metadata on properties, it will even load deeply nested sets of components.

I'll admit to being somewhat inspired by Golang's json.Unmarshal.

Goals

  1. A ColdFusion library that is super easy to use.
  2. Generated code that is
    1. correct (does the expected thing)
    2. clean and readable
    3. fast and efficient
    4. thread safe

Usage

See How To Guide for usage instructions.

Questions

See FAQ.

Clone this wiki locally