Backend Architecture
The Ever Gauzy backend is built on NestJS, a progressive Node.js framework for building efficient, scalable server-side applications using TypeScript.
NestJS Foundationβ
NestJS provides the architectural backbone with:
- Dependency Injection (DI) β module-based inversion of control container
- Decorators β declarative metadata for routes, guards, pipes, and more
- Middleware Pipeline β composable request/response processing
- Platform Agnostic β runs on Express or Fastify (Gauzy uses Express)
Module Organizationβ
The backend is organized into well-defined NestJS modules within packages/core/src/lib/:
Core Modulesβ
packages/core/src/lib/
βββ auth/ # Authentication (login, register, social OAuth)
βββ user/ # User management
βββ tenant/ # Tenant management and onboarding
βββ role/ # Role definitions (SUPER_ADMIN, ADMIN, EMPLOYEE, etc.)
βββ role-permission/ # Role-permission mappings
βββ organization/ # Organization CRUD and settings
βββ employee/ # Employee profiles, statistics, awards
βββ shared/ # Shared utilities, validators, base entities
βββ core/ # Core module registration
βββ bootstrap/ # Application bootstrapping
Feature Modulesβ
packages/core/src/lib/
βββ time-tracking/ # Time logs, timesheets, activity tracking, screenshots
βββ tasks/ # Task management with statuses, priorities, sizes
βββ organization-project/ # Project management
βββ organization-sprint/ # Sprint management
βββ organization-project-module/ # Project modules
βββ invoice/ # Invoice generation and management
βββ expense/ # Expense tracking
βββ payment/ # Payment processing
βββ income/ # Income records
βββ candidate/ # Applicant tracking
βββ pipeline/ # Sales pipelines
βββ contact/ # Contact/lead management
βββ goal/ # Goals and objectives
βββ goal-kpi/ # Key Performance Indicators
βββ reports/ # Reporting and analytics
βββ ... (148 modules total)
Infrastructure Modulesβ
packages/core/src/lib/
βββ database/ # Database connection and configuration
βββ graphql/ # GraphQL schema and resolvers
βββ health/ # Health check endpoints
βββ logger/ # Logging configuration
βββ i18n/ # Internationalization
βββ email-send/ # Email dispatch
βββ email-template/ # Email templates (Handlebars)
βββ export-import/ # Data export/import
βββ image-asset/ # Image/file management
βββ throttler/ # Rate limiting
βββ event-bus/ # Event bus integration
βββ integration/ # Third-party integration base
CQRS Patternβ
The backend extensively uses Command Query Responsibility Segregation (CQRS):
Commands (Write Operations)β
// Command definition
export class CreateEmployeeCommand {
constructor(public readonly input: IEmployeeCreateInput) {}
}
// Command handler
@CommandHandler(CreateEmployeeCommand)
export class CreateEmployeeHandler
implements ICommandHandler<CreateEmployeeCommand>
{
constructor(private readonly employeeService: EmployeeService) {}
async execute(command: CreateEmployeeCommand): Promise<IEmployee> {
const { input } = command;
return this.employeeService.create(input);
}
}
Queries (Read Operations)β
// Query definition
export class FindEmployeesQuery {
constructor(public readonly options: FindManyOptions<Employee>) {}
}
// Query handler
@QueryHandler(FindEmployeesQuery)
export class FindEmployeesHandler implements IQueryHandler<FindEmployeesQuery> {
constructor(private readonly employeeService: EmployeeService) {}
async execute(query: FindEmployeesQuery): Promise<IPagination<IEmployee>> {
return this.employeeService.findAll(query.options);
}
}
Controller Integrationβ
@Controller("employee")
@UseGuards(TenantPermissionGuard)
export class EmployeeController {
constructor(
private readonly commandBus: CommandBus,
private readonly queryBus: QueryBus,
) {}
@Post()
@Permissions(PermissionsEnum.EMPLOYEES_EDIT)
async create(@Body() entity: CreateEmployeeDTO): Promise<IEmployee> {
return this.commandBus.execute(new CreateEmployeeCommand(entity));
}
@Get()
@Permissions(PermissionsEnum.EMPLOYEES_VIEW)
async findAll(
@Query() options: PaginationParams,
): Promise<IPagination<IEmployee>> {
return this.queryBus.execute(new FindEmployeesQuery(options));
}
}
Guard Architectureβ
Guards enforce security at the controller level. They execute in order:
1. Authentication Guard (AuthGuard)β
Validates the JWT token and attaches the authenticated user to the request:
@UseGuards(AuthGuard('jwt'))
The @Public() decorator bypasses authentication for specific endpoints (e.g., registration, login).
2. Tenant Permission Guard (TenantPermissionGuard)β
Combines tenant resolution with permission checking:
- Resolves the tenant from the authenticated user
- Sets
RequestContext.currentTenantId() - Validates the user has the required permissions
@UseGuards(TenantPermissionGuard)
3. Role Guard (RoleGuard)β
Restricts access based on user roles:
@Roles(RolesEnum.SUPER_ADMIN, RolesEnum.ADMIN)
@UseGuards(RoleGuard)
4. Permission Guard (PermissionGuard)β
Fine-grained permission checking:
@Permissions(PermissionsEnum.EMPLOYEES_EDIT)
@UseGuards(PermissionGuard)
Guard Hierarchyβ
SUPER_ADMIN
βββ ADMIN
βββ DATA_ENTRY
βββ EMPLOYEE
βββ CANDIDATE
βββ VIEWER
Service Layerβ
Services contain the core business logic and data access patterns:
Base Serviceβ
Most services extend CrudService<T>:
@Injectable()
export class EmployeeService extends CrudService<Employee> {
constructor(
@InjectRepository(Employee)
private readonly employeeRepository: Repository<Employee>,
) {
super(employeeRepository);
}
// CrudService provides: findAll, findOneByIdString, create, update, delete
// Custom methods add domain-specific logic
}
Tenant-Aware Servicesβ
Services extending TenantAwareCrudService automatically scope all queries by tenantId:
@Injectable()
export class ProjectService extends TenantAwareCrudService<OrganizationProject> {
// All findAll/findOne/create/update/delete operations
// are automatically filtered by the current tenant
}
Request Contextβ
The RequestContext provides a thread-safe way to access request-scoped data anywhere in the application:
// Get current tenant
const tenantId = RequestContext.currentTenantId();
// Get current user
const userId = RequestContext.currentUserId();
const user = RequestContext.currentUser();
// Get current organization
const orgId = RequestContext.currentOrganizationId();
// Get current role
const roleId = RequestContext.currentRoleId();
API Documentationβ
Swagger (OpenAPI)β
The API automatically generates Swagger documentation:
- URL:
http://localhost:3000/swg - JSON Spec:
http://localhost:3000/swg-json - API Docs (Compodoc):
http://localhost:3000/docs
API Versioningβ
The API uses URL-based versioning:
- Current:
/api/(v1 implicit) - All endpoints are prefixed with
/api/
Error Handlingβ
The platform uses NestJS exception filters with standard HTTP exceptions:
throw new NotFoundException("Employee not found");
throw new BadRequestException("Invalid input");
throw new ForbiddenException("Insufficient permissions");
throw new UnauthorizedException("Token expired");
Custom exceptions extend HttpException with structured error responses.
Middleware Pipelineβ
Request β Logger Middleware β Auth Guard β Tenant Guard β Permission Guard
β Validation Pipe β Controller β Command/Query Handler β Service
β Response Interceptor β Response
Related Pagesβ
- Architecture Overview β high-level system design
- Multi-ORM Architecture β database abstraction layer
- Plugin System β extending backend functionality
- Event Bus β inter-module communication