Skip to content

Commit

Permalink
v 0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwalguptaofficial committed Nov 16, 2018
1 parent 4db029c commit 9098fc0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
4 changes: 3 additions & 1 deletion dist/fort.commonjs2.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/fort.commonjs2.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/ts/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ export declare class Global {
static walls: typeof GenericWall[];
static errorHandler: typeof ErrorHandler;
static defaultPath?: string;
static connectonKeepAliveTimeout?: number;
}
10 changes: 10 additions & 0 deletions dist/ts/types/app_option.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,14 @@ export declare type AppOption = {
* @memberof IAppOption
*/
defaultPath?: string;
/**
* Timeout in milliseconds. Default: 5000 (5 seconds).
* The number of milliseconds of inactivity a server needs to wait for additional incoming data,
* after it has finished writing the last response, before a socket will be destroyed.
* If the server receives new data before the keep-alive timeout has fired,
* it will reset the regular inactivity timeout
*
* @type {number}
*/
connectonKeepAliveTimeout?: number;
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fortjs",
"version": "0.4.0",
"version": "0.5.0",
"description": "Modern, Advanced & structured MVC web framework for nodejs targeting good code structures, modularity based on the principle of fortification.",
"main": "dist/fort.commonjs2.js",
"types": "dist/ts/index.d.ts",
Expand Down

0 comments on commit 9098fc0

Please sign in to comment.