Giter Club home page Giter Club logo

Comments (2)

santiq avatar santiq commented on July 21, 2024 4

Hi Nico,

You can get rid of Agenda.js if you are not using it, remove the 'loader' and the calls to the job handlers in the subscriber/events folder.

To implement MySQL just go to the models' folder and remove mongoose, and declare your models as you are used to with MySQL.

TypeORM is a good option with pretty similar syntax at what is used here.

Also, don't forget to add MySQL connection as well.

To be honest, at the moment of including the calls to Models in the Service Layer, I didn't write a repository pattern, so all the calls to mongoose are tightly coupled, I'm really sorry :/
So, you need to go to the service layer and change the calls to .find(), .create() etc, to something compatible with your MySQL implementation.

import {Entity, PrimaryGeneratedColumn, Column, BaseEntity} from "typeorm";

@Entity()
export class User extends BaseEntity {

    @PrimaryGeneratedColumn()
    id: number;

    @Column()
    firstName: string;

    @Column()
    lastName: string;

    @Column()
    age: number;

}

The thing with Redis is a lot more simpler, setup the Redis connection in the DI container.

import { Container } from 'typedi';
import * as redis from 'redis'

export default ({ mongoConnection, models }: { mongoConnection; models: { name: string; model: any }[] }) => {
  try {
    models.forEach(m => {
      Container.set(m.name, m.model);
    });

    const redisClient = redis.createClient();

    Container.set('redisClient', redisClient);
...

Then inject it in the class you want.

    
import { Service, Inject } from 'typedi';


@Service()
export default class SearchService {
  constructor(
    @Inject('redisClient') private redisClient
  ) {}
...

from bulletproof-nodejs.

nicolascamilo avatar nicolascamilo commented on July 21, 2024 2

Woah! This is amazing, man!
You don't have a clue how much this helps me while I'm taking my first steps with Node :)

Of course I'll give you credits if I ever build an app with this architecture!

from bulletproof-nodejs.

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.