Releases: kilobit/wt-node
v2.0-delta: 2016.03.10, Version 2.0.0 Pre-release
Router updated to use the prototype pattern - initialization is now 'new Router(options)'
Created tests for the updated router
Passing information gathered from pre-handlers within the third parameter passed to handlers, 'data'
Added optional pre-handler to retrieve cookies from the header and place them in a js object within the data object (data.cookies)
Post-Parameter Parsing pre-handler updated to parse for both POST and PUT requests (previously only POST).
Post-Parameter Parsing pre-handler updated to parse application/json requests with JSON.parse while others can use querystring parser
Post-Parameter Parsing pre-handler updated to retreive xml request data
v2.0-charlie: 2015.10.23, Version 2.0.0 Pre-release
Router updated to use the prototype pattern - initialization is now 'new Router(options)'
Created tests for the updated router
Passing information gathered from pre-handlers within the third parameter passed to handlers, 'data'
Added optional pre-handler to retrieve cookies from the header and place them in a js object within the data object (data.cookies)
Post-Parameter Parsing pre-handler updated to parse for both POST and PUT requests (previously only POST).
Post-Parameter Parsing pre-handler updated to parse application/json requests with JSON.parse while others can use querystring parser
v2.0-beta: 2015.09.30, Version 2.0.0 Pre-release
- Router updated to use the prototype pattern - initialization is now 'new Router(options)'
- Created tests for the updated router
- Passing information gathered from pre-handlers within the third parameter passed to handlers, 'data'
- Added optional pre-handler to retrieve cookies from the header and place them in a js object within the data object (data.cookies)
- Post-Parameter Parsing pre-handler updated to parse for both POST and PUT requests (previously only POST).
v2.0-alpha: 2015.08.13, Version 2.0.0 Pre-release
- Router updated to use the prototype pattern - initialization is now 'new Router(options)'
- Created tests for the updated router
- Passing information gathered from pre-handlers within the third parameter passed to handlers, 'data'
- Added optional pre-handler to retrieve cookies from the header and place them in a js object within the data object (data.cookies)
v1.0.0: 2015.08.13, Version 1.0.0
First release of WT. Includes:
- Router w/ capability to match a route to a handler and attach pre-handlers that run on each route, before the handler is invoked
- Logger w/ basic debug/info/msg/warn/error logging to the console
- Html w/ ability to generate and parse html
- Utils w/ request body loader and parser