Skip to content

An experiment in porting ColdFusion application framework (Application.cfc) concepts into Node.js.

Notifications You must be signed in to change notification settings

bennadel/ColdFusion.js-Deprecated

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ColdFusion.js

This project is an experiment in moving some of the ColdFusion Application Framework (Application.cfc) concepts into a Node.js context. This includes centralized hooks into the various events of the ColdFusion.js lifecycle:

onApplicationStart() => callback( true | false )
onSessionStart()
onRequestStart() => callback( true | false )
onRequest()
onRequestEnd()
onSessionEnd()
onApplicationEnd()
onError() => true | false

These event handlers are defined in the Application.js file - a root-level module that exports these methods in a single constructor. None of the methods are requires. They are only used if they are present.

Like the ColdFusion application framework, session management can be managed on a per-request basis. Cookies can be overriden so that session cookies can be encrypted. 

About

An experiment in porting ColdFusion application framework (Application.cfc) concepts into Node.js.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published