Hi everyone,
I’m currently working on migrating a Meteor server-side app that primarily serves REST API calls. The app includes a single sign-in page but mainly functions as an API server, exposing OpenAPI endpoints.
Previously, we used Iron Router for both routing the sign-in page and handling the API endpoints. However, we are now migrating to Flow Router Extra for the sign-in functionality. Since Flow Router is client-side only, we need an alternative for handling server-side REST API endpoints.
I’ve seen that the official Meteor documentation suggests using WebApp
from Meteor itself for handling HTTP requests. Would this be the best approach for implementing our API routes, or is there a better package recommended for this use case?
Any insights or recommendations would be greatly appreciated!
Thanks in advance!