nestjs version
nest info
nestjs
npm i -g @nestjs/cli
nest new project-name
Alternatives
Alternatively, to install the TypeScript starter project with Git:
git clone https://github.com/nestjs/typescript-starter.git project
cd project
npm install
npm run start
nestjs code example
import { Controller, Get } from '@nestjs/common';
@Controller('/api')
export class AppController {
@Get('/testAuth0')
getHello() {
return {
status: 'ok'
};
}
@Get('/health')
getHealthCheck() {
return {
status: 'ok'
};
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us