๐Guide
A guide how to get started with Nestgram
Last updated
yarn add nestgram@1.9.0
// or
npm i nestgram@1.9.0import { NestGram } from 'nestgram';
import { AppModule } from './app/app.module';
async function bootstrap(): Promise<void> {
const bot = new NestGram('TOKEN', AppModule);
await bot.start();
}
bootstrap();import { Module } from 'nestgram';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
controllers: [AppController],
services: [AppService],
})
export class AppModule {}import { OnCommand, Controller } from 'nestgram';
import { AppService } from './app.service';
@Controller()
export class AppController {
constructor(private readonly appService?: AppService) {}
@OnCommand('start')
start(): string {
return 'Hello, world!';
}
}import { Service } from 'nestgram';
@Service()
export class AppService {}npm run devnpm run build && npm run prod