Fortjs Versions Save

A feature-rich Node.js web framework designed for building powerful, scalable, and maintainable web applications.

v2.8.1

2 months ago

Remove FortGlobal Constant - code cleanup and optimization

v2.8.0

2 months ago
  • Add cache feature, allows to cache get endpoints
  • use fast content type
  • Capitalize internal server error

v2.7.1

3 months ago

add feature middleware execute api

expose a middleware api which will help to execute any middleware

const middleware = (req,resp, next)=>{
 next();
}
this.middleware(middleware).execute();

v2.7.0

4 months ago

🚀 New Feature Release 🌟 - Partial Routes & Child Routes!

Introducing the ability to create partial routes, empowering users to streamline controllers into lightweight sub-controllers, each dedicated to a specific task. 🚀💡

Example:

controller: UserController,
path: "/user",
children: [
    {
        controller: UserProfileController,
        path: "/profile",
        children: [
            {
                controller: UserProfileNestedController,
                path: "/nested"
            }
        ]
    }
]

Effortlessly organize and enhance your application structure!

PR - https://github.com/ujjwalguptaofficial/fortjs/pull/38

v2.6.1

4 months ago
  • Fix dependency issue of cron - add cron in fortjs dependency

v2.6.0

4 months ago

Add support for cron/scheduler

v2.5.4

5 months ago
  • Set default view path to current working directory

v2.5.3

5 months ago

The various part of the code has been changed to optimize the performance and now it's 3x faster than nestjs and express both.

This release marks a significant milestone in the Fort.js journey, as various parts of the code have undergone optimizations resulting in a remarkable 3x improvement in performance compared to both Nest.js and Express. This achievement not only enhances stability but also positions Fort.js as a robust and high-performance framework, outpacing other popular alternatives in the ecosystem.

v2.5.2

5 months ago
  • Create sessionStore and remove sessionprovider
  • Create types for extending controller and other components and remove generic types
  • move types which are object to interfaces

v2.5.0

6 months ago
  • Add global shields and guards
  • Use walls for cookie parsing
  • Use global guards for post data evaluation