Ian Summerlin

Results 3 comments of Ian Summerlin

@DevJoaoLopes What are you thinking migrating too ?

I have achieved something similar with the plugin pattern ```js // server.ts new Elysia() .use(getContact); // getContact.ts export const getContact = new Elysia().get( "/contacts/:id", (context) => { const contactId =...