S SmartDocs
Serie: nest.js typescript 9 líneas · Actualizado 2026-02-03

app.service.ts

nest.js/01-beginner/demo-beginner/src/app.service.ts

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

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

Artículos relacionados