S SmartDocs
Series: nest.js typescript 9 lines · Updated 2026-02-03

app.service.ts

nest.js/02-intermediate/code/app.service.ts

import { Injectable } from '@nestjs/common';

@Injectable()
export class AppService {
  getHello(): string {
    return 'Hello World! Welcome to NestJS Intermediate Tutorial';
  }
}

Related articles