A simple library for creating structured and organized controller and service with class-based design. It also provides basic decorators usage in Express using Typescript
Version 2 is under development
A simple library for creating structured and organized controllers and services with class-based design. It also provides basic decorators usage in Express using Typescript
Philosophy: Provide tools for creating lightweight framework for Express app. To be easy to integrate with any kind of dependency injection tools, any service providers.
However, it focus on low dependency as much as possible. The tools should help to define the stucture of code for testing purpose, but also flexible for add other tools.
Inspiration from: Nestjs, Routing Controllers, OvernightJS
Get
, Post
, Put
, Delete
, Use
, Controller
Use
for Express Middleware@Use(validateAuth, validateRole)
(validateAuth
, validateRole
is the custom middlewares)HttpException
validateType
using class-validator
Install the module
$ npm install @mildjs/core reflect-metadata
The concept is Module
contains:
Controller
: Combine the controller, middleware and routingService
: To connect with other service like Database.Note: for version 1.5.0
Setup the controller
// filename: users.controller.ts
import { Controller, Get } from '@mildjs/core';
@Controller('users')
export class UsersController {
@Get()
public async getUsers(req: any, res: any, next: any) {
const data:any = { name: "Micky" };
res.status(200).json( data );
}
}
Inject the controller to Express using useExpressServer
// filename: main.ts
import express from 'express';
import { UsersController } from './users.controller';
import { useExpressServer } from '@mildjs/core';
const app = express();
useExpressServer(app, {
controllers: [UsersController]
});
app.listen(3000);
If you want to use with TypeORM, please install
$ npm install typeorm typedi typeorm-typedi-extensions
setup the entity & service
// filename: users.entity.ts
import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm';
@Entity()
export class User {
@PrimaryGeneratedColumn()
id: number;
@Column()
name: string;
}
The repository
will be injected by service of typedi
// filename: users.service.ts
import { Service } from 'typedi';
import { InjectRepository } from 'typeorm-typedi-extensions';
import { User} from './users.entity';
@Service()
export class UsersService {
@InjectRepository(User)
private repository: Repository<User>;
public findAll(): Promise<User[]> {
const users = this.repository.find();
return users;
}
}
setup the controller, (Note: useExpressServer
will inject the service in userService
property, respectively, If you have 2 services, please make sure that the order in the providers (@Module) is setting is same order with the controller constructor. )
// filename: users.controller.ts
import { Controller, Get } from '@mildjs/core';
import { UsersService } from './users.service';
import { User} from 'users.entity';
@Controller('/users')
export class UsersController {
constructor(public userService: UsersService) {}
@Get('/')
public async getUsers(req: any, res: any, next: any) {
const data: User[] = await this.userService.findAll();
res.status(200).json({ data });
}
}
Setup the module
// filename: users.module.ts
import { Module } from '@mildjs/core';
import { UsersController } from './users.controller';
import { UsersService } from './users.service';
@Module({
controllers: [ UsersController ],
providers: [ UsersService ]
})
export class UsersModule { }
setup the express app & typeORM connect with the DB
// main.ts
import express from 'express';
import { UsersModule } from './users.module';
import { Container } from 'typedi';
import { createConnection, useContainer } from 'typeorm';
function initDatabase(){
useContainer(Container);
createConnection({
// TypeORM config....
});
}
async function runServer(){
// Make sure the database should be connected before inject the providers
await initDatabase();
app = express();
useExpressServer(app, {
// import module
imports: [ UsersModule ]
// inject the container from `createConnection`
getProviderCallback: (provider: any) => Container.get(provider);
});
}
runServer();
Why we don’t need to catch the error in the controller?
Answer: addExpressController
and the router decorator. It works because reflect-metadata
for using save the extra the data to the function, class , method or property.
If you see the code…
@Get('/') // get method and path `/`
public async getUsers(req: any, res: any, next: any) {
const data: User[] = await this.userService.findAllUser();
res.status(200).json({ data });
}
It will be transform to
app.get('/', getUsers);
but we don’t handle the error yet, thanks for https://www.positronx.io/express-js-error-handling-tutorial-with-best-example/ for example of using Express error handling.
Lastly, it it will be
const asyncHelper = (fn: any) => (
function(req: Request, res: Response, next: NextFunction){
fn(req, res, next).catch(next);
}
);
app.get('/', asyncHelper( async (req, res, next ) => {
getUsers
}) );
So, the asyncHelper
will help to catch the error, and pass it to the error handling middle of Express app.
Finally, the error will be passing to the error handling middle of Express app.
app.use( (error, req, res, next ) => {
res.send(error.message);
})
Fine, you can help to improve this project
MIT