A OCPP Injectable module for Nestjs.
A Nest module for OCPP protocol (Supports 1.6)
$ npm i --save nestjs-ocpp$ yarn add nestjs-ocppTo use OCPP we need to register module for example in app.module.ts
import { OcppModule } from 'ocpp-module';
@Module({
imports: [
OcppModule.forRoot({
versions: ['ocpp1.6'], // Support for 1.6 protocol of OCPP
}),
],
})
export class AppModule {}