Create a Websockets App in NestJS
NestJS is one of the things I have been playing around a bit in the recent days. Here’s how you can create a websocket application quickly on NestJS. Did I say this is a sample app that serves no real-world value other than poking around the application? Setup project in NestJS First.. install NextJS if you have not done so. yarn global add @nestjs/cli Create a new project. nest new websocket-proj Now, install support for sockets. ...