Get Started
Project Structure
Project Structure is used to define the project structure for the application
An Orionjs application follows a modular, component-based architecture that promotes clean organization and separation of concerns. Below is the typical structure of an Orionjs project based on our example application.
Root Directory
App Directory
The app
directory contains all the application code:
Component Structure
Each component follows a consistent structure:
Configuration Structure
The config
directory contains application-wide configuration:
Application Bootstrap
The application is bootstrapped in app/index.ts
, where components are registered:
Component Definition
Components are defined using the component
function:
This modular approach allows you to organize your application by domains or features, making it easier to maintain and extend your codebase.
Was this page helpful?