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