The Twilio module api Users and OTP for NestJS framework.
npm:
npm i @nestrx/twilioyan
yan add @nestrx/twilioapp.module.ts
...
@Module({
...
imports: [
...
HttpModule,
TwilioModule.forRoot({
token: 'your_app_token',
}),
...
],
...
})
...your.service.ts
...
@Injectable()
export class YourService {
constructor(private twilio: TwilioService) {
}
...