Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@fastify-decorators/typedi

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fastify-decorators/typedi

fastify-decorators plugin to work with Sequelize

  • 4.0.0-next.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@fastify-decorators/typedi

npm version npm License: MIT

Dependency injection

Dependency injection (DI) is widely used mechanism to autowire controller/service dependency. In fastify-decorators DI only available for controllers.

This plugin provides support for integration with TypeDI

Getting started

  1. Install @fastify-decorators/typedi and typedi

  2. Use TypeDI container in the app

    import { useContainer } from '@fastify-decorators/typedi';
    import { fastify } from 'fastify';
    import { bootstrap } from 'fastify-decorators';
    import { Container } from 'typedi';
    
    useContainer(Container);
    
    export const app = fastify();
    
    app.register(bootstrap, {
      directory: import.meta.url,
    });
    
  3. Write services, annotate them with @Service and inject into controllers using @Inject from TypeDI

Examples

FAQs

Package last updated on 20 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc