You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since NestJS is a framework built on express, and this project uses aws-serverless-express which is supposed to work with any express framework, I was hoping there would be a way to use this plugin for NestJS projects.
Any ideas ?
The text was updated successfully, but these errors were encountered:
In essence, for the Express Component to work, you need to export your Express application instance from your app.js. The Express Component Lambda handler will require() your app.js (hence get your Express application instance) and handle the incoming Lambda event.
In a NestJS environment though, you would need to create your Nest application first, which is an asynchronous operation through NestFactory.create().
Although it should not be really difficult to create a custom component for Express-backed NestJS based off of the Express one.
Since NestJS is a framework built on express, and this project uses
aws-serverless-express
which is supposed to work with any express framework, I was hoping there would be a way to use this plugin for NestJS projects.Any ideas ?
The text was updated successfully, but these errors were encountered: