Services
Services are used to define the services for the controller
Services in Orionjs encapsulate business logic and provide a clean way to organize your application code. They follow the dependency injection pattern, making your code more modular and easier to test.
Basic Usage
Dependency Injection
Services can be injected into other services or controllers. In v4, you must use the factory function pattern for dependency injection:
Circular Dependencies
The factory function pattern used in v4 automatically handles circular dependencies:
Testing
Services are designed to be easily testable with Jest:
Getting Service Instances
You can get service instances from anywhere in your application:
Services form the backbone of Orionjs applications, providing a structured way to organize business logic and maintain separation of concerns.
Was this page helpful?