Lightweight framework for single purpose apps
I created this for tiny cf apps that do mostly one thing and need all the speed they can get while also having some shared convenience functions.
--
- copy zero.cfc to you app or create a mapping to it.
- create an Application.cfc and extend this framework.
Application.cfc
component extends="framework.zero"{
}If you need to manipulate stuff in onApplicationStart or onRequestStart, call the super.-method first.
- Config managment
- Application flow
- Helper methods (right now, just nil() to return null)