GithubHelp home page GithubHelp logo

Comments (4)

Nmans01 avatar Nmans01 commented on June 2, 2024

Having migrated from NestJS to Elysia, I like the service + controller model as well. However, I've applied it in a different way, and found that Elysia already provides the necessary tooling.

Elysia projects are comprised of plugins, and so I find that controllers and services can both be plugins, each with their own purpose. Using .derive and .decorate, you can append useful functions/logic in a service plugin, and use .use to append the service plugin to its corresponding controller plugin. I.e. I have a prismaService, which appends the prisma client to the context, an authService, which uses the prisma service to derive useful auth functions, and an authController, which uses the authService and applies the functions to auth-related endpoints.

In the case of using .derive in a service plugin, you can easily access the context object within your "derived" functions, meaning you don't have to create functions which take a fully-typed context as a argument, which seems to be a common pain point people have.

Hope this helps

from elysia.

Arthurmtro avatar Arthurmtro commented on June 2, 2024

@Nmans01 , Ohh, interesting, would you mind showing me an implementation of this concept?

from elysia.

Nmans01 avatar Nmans01 commented on June 2, 2024

A small example

// prismaService.ts
const prisma = new PrismaClient();

export const prismaService = new Elysia({ name: "prismaService" })
    .decorate({ prisma })

// authService.ts
export const authService = new Elysia({ name: "authService" })
    .use(prismaService)
    .derive((context) => ({

        getCurrentUser: async () => {
            const user = await context.prisma.user.findFirst({
                // ...
            });
            return user;
        }

    }))

// authController.ts
export const authController = new Elysia({ prefix: "/auth" })
    .use(authService)
    .get("/me", async ({ getCurrentUser }) => {
        const user = await getCurrentUser();
        return { user };
    })

// app.ts
const app = new Elysia()
    .use(authController)
    .listen(3000)

from elysia.

Arthurmtro avatar Arthurmtro commented on June 2, 2024

This is not stupid at all :o

from elysia.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.