-
Notifications
You must be signed in to change notification settings - Fork 0
Home
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.
- A ColdFusion library that is super easy to use.
- Generated code that is
- correct (does the expected thing)
- clean and readable
- fast and efficient
- thread safe
See How To Guide for usage instructions.
See FAQ.