TsExpressDecorators
Build your TypeScript v2 application with Express decorators !
Features
- Define class as Controller,
- Define class as Service (IoC),
- Define class as Middleware and MiddlewareError,
- Define class as Converter (POJ to Model and Model to POJ),
- Define root path for an entire controller and versioning your Rest API,
- Define as sub-route path for a method,
- Define routes on GET, POST, PUT, DELETE and HEAD verbs,
- Define middlewares on routes,
- Define required parameters,
- Inject data from query string, path parameters, entire body, cookies, session or header,
- Inject Request, Response, Next object from Express request,
- Templating (View),
- Swagger documentation and Swagger-ui,
- Testing.
Documentation
Documentation for v2.x beta is available on https://romakita.github.io/ts-express-decorators
Migrate from 1.x or to 2.x
See migrate from 1.x to 2.x section.
Installation
You can get the latest release using npm:
$ npm install --save ts-express-decorators express@4 @types/express
Important! TsExpressDecorators requires Node >= 4, Express >= 4, TypeScript >= 2.0 and the
experimentalDecorators
,emitDecoratorMetadata
,types
andlib
compilation options in yourtsconfig.json
file.
{
"compilerOptions": {
"target": "es5",
"lib": ["es6", "dom"],
"types": ["reflect-metadata"],
"module": "commonjs",
"moduleResolution": "node",
"experimentalDecorators":true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": false
},
"exclude": [
"node_modules"
]
}
Quick start
Create your express server
TsExpressDecorators provide a ServerLoader
class to configure your
express quickly. Just create a server.ts
in your root project, declare
a new Server
class that extends ServerLoader
.
import * as Express from "express";
import {ServerLoader, ServerSettings} from "ts-express-decorators";
import Path = require("path");
@ServerSettings({
rootDir: Path.resolve(__dirname),
acceptMimes: ["application/json"]
})
export class Server extends ServerLoader {
/**
* This method let you configure the middleware required by your application to works.
* @returns {Server}
*/
public $onMountingMiddlewares(): void|Promise<any> {
const cookieParser = require('cookie-parser'),
bodyParser = require('body-parser'),
compress = require('compression'),
methodOverride = require('method-override');
this
.use(GlobalAcceptMimesMiddleware)
.use(cookieParser())
.use(compress({}))
.use(methodOverride())
.use(bodyParser.json())
.use(bodyParser.urlencoded({
extended: true
}));
return null;
}
public $onReady(){
console.log('Server started...');
}
public $onServerInitError(err){
console.error(err);
}
}
new Server().start();
By default ServerLoader load controllers in
${rootDir}/controllers
and mount it to/rest
endpoint.
To customize the server settings see Configure server with decorator
Create your first controller
Create a new calendarCtrl.ts
in your controllers directory configured
previously with ServerLoader.mount()
. All controllers declared with @Controller
decorators is considered as an Express router. An Express router require a path
(here, the path is /calendars
) to expose an url on your server.
More precisely, it is a part of path, and entire exposed url depend on
the Server configuration (see ServerLoader.setEndpoint()
) and the controllers
dependencies. In this case, we haven't a dependencies and the root endpoint is set to /rest
.
So the controller's url will be http://host/rest/calendars
.
import {Controller, Get} from "ts-express-decorators";
import * as Express from "express";
export interface Calendar{
id: string;
name: string;
}
@Controller("/calendars")
export class CalendarCtrl {
/**
* Example of classic call. Use `@Get` for routing a request to your method.
* In this case, this route "/calendars/:id" are mounted on the "rest/" path.
*
* By default, the response is sent with status 200 and is serialized in JSON.
*
* @param request
* @param response
* @returns {{id: any, name: string}}
*/
@Get("/:id")
async get(request: Express.Request, response: Express.Response): Promise<Calendar> {
return {id: request.params.id, name: "test"};
}
@Get("/")
@ResponseView("calendars/index") // Render "calendars/index" file using Express.Response.render internal
async renderCalendars(request: Express.Request, response: Express.Response): Promise<Array<Calendar>> {
return [{id: '1', name: "test"}];
}
@Post("/")
@Authenticated()
async post(
@Required() @BodyParams("calendar") calendar: Calendar
): Promise<ICalendar> {
return new Promise((resolve: Function, reject: Function) => {
calendar.id = 1;
resolve(calendar);
});
}
@Delete("/")
@Authenticated()
async post(
@BodyParams("calendar.id") @Required() id: string
): Promise<ICalendar> {
return new Promise((resolve: Function, reject: Function) => {
calendar.id = id;
resolve(calendar);
});
}
}
To test your method, just run your server.ts
and send a http request on /rest/calendars/1
.
Note : Decorators
@Get
support dynamic pathParams (see/:id
) andRegExp
like Express API.
Contributors
License
The MIT License (MIT)
Copyright (c) 2016 Romain Lenzotti
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.