📄️ Write your own Endpoint
Orion is designed to make the creation and organization of routes and controllers simple and modular. With the npm generate module command, you can scaffold new modules (a route-controller pair) in seconds, giving you a consistent structure for handling specific resources in your application.
📄️ Custom Database Connection
Orion’s database structure is designed to make database connections modular and consistent across the application. To add a new database connection, you need to create a class that extends DatabaseInterface, which ensures that your custom database connection follows a standardized pattern.
📄️ Custom Middleware
Orion's modular middleware system makes it easy to add custom middlewares. By extending the IMiddleware interface, you ensure that your middleware follows a consistent structure across the application.