Skip to content

Configuration

Configuration lets you quickly configure your server via decorator. This decorator takes your configuration and merges it with the default server configuration.

The default configuration is as follows:

json
{
  "env": "development",
  "port": 8080,
  "debug": false,
  "httpsPort": 8000,
  "uploadDir": "./uploads"
}

You can customize your configuration as follows on Server.tslevel:

ts
import {Configuration} from "@tsed/di";
import {MyController} from "./controllers/manual/MyController";

@Configuration({
  mount: {
    "/rest": [
      `./controllers/current/**/*.ts`, // deprecated
      MyController // support manual import
    ],
    "/rest/v0": [
      // versioning
      `./controllers/v0/users/*.js`, // deprecated
      `!./controllers/v0/groups/old/*.ts` // Exclusion
    ]
  }
})
export class Server {}

or when you bootstrap your Server (e.g. index.ts):

ts
import {$log} from "@tsed/common";
import {PlatformExpress} from "@tsed/platform-express";
import {Server} from "./server";

async function bootstrap() {
  try {
    $log.debug("Start server...");
    const platform = await PlatformExpress.bootstrap(Server, {
      // extra settings
    });

    await platform.listen();
    $log.debug("Server initialized");
  } catch (er) {
    $log.error(er);
  }
}

bootstrap();

Note

Ts.ED supports ts-node. Ts extension will be replaced by a Js extension if ts-node isn't the runtime.

Options

rootDir

  • type: string

The root directory where you build run project. By default, it is equal to process.cwd().

typescript
import {Configuration} from "@tsed/di";

@Configuration({
  rootDir: process.cwd()
})
export class Server {}

env

  • type: Env

The environment profiles. By default the environment profile is equal to NODE_ENV.

typescript
import {Env} from "@tsed/core";
import {Configuration, Constant} from "@tsed/di";

@Configuration({
  env: Env.PROD
})
export class Server {
  @Constant("env")
  env: Env;

  $beforeRoutesInit() {
    if (this.env === Env.PROD) {
      // do something
    }
  }
}

httpPort

  • type: string | number | false

Port number for the HTTP.Server. Set false to disable the http port.

httpsPort

  • type: string | number | false

Port number for the HTTPs.Server.

httpsOptions

  • type: Https.ServerOptions
    • key <string> | <string[]> | <Buffer> | <Object[]>: The private key of the server in PEM format. To support multiple keys using different algorithms, an array can be provided either as a plain array of key strings or an array of objects in the format {pem: key, passphrase: passphrase}. This option is required for ciphers making use of private keys.
    • passphrase <string> A string containing the passphrase for the private key or pfx.
    • cert <string> | <string[]> | <Buffer> | <Buffer[]>: A string, Buffer, array of strings, or array of Buffers containing the certificate key of the server in PEM format. (Required)
    • ca <string> | <string[]> | <Buffer> | <Buffer[]>: A string, Buffer, array of strings, or array of Buffers of trusted certificates in PEM format. If this is omitted, several well known "root" CAs (like VeriSign) will be used. These are used to authorize connections.

See the HTTPs project example

mount

  • type: EndpointDirectoriesSettings

Mount all given controllers and map controllers to the corresponding endpoints.

Ts.ED provides the possibility to mount multiple Rest paths instead of the default path /rest. This option will allow you to define a version for an endpoint and select which controllers you want to associate with the given path.

ts
import {Configuration} from "@tsed/di";
import * as v1Controllers from "./controllers/v1/index";
import * as v0Controllers from "./controllers/v0/index";

@Configuration({
  mount: {
    "/rest/v1": [...Object.values(v1Controllers)],
    "/rest/v0": [...Object.values(v0Controllers)]
  }
})
export class Server {}

// v1/index.ts
export * from "./users/UserControllers";
export * from "./groups/GroupsControllers";

// v0/index.ts
export * from "./users/UserControllers";
export * from "./groups/GroupsControllers";

It is also possible to split the configuration by using the Module:

componentsScan (deprecated)

  • type: string[]

List of glob pattern to scan directories which contains Services or Middlewares.

middlewares

  • type: PlatformMiddlewareSettings[]

A middleware list (Express.js, Ts.ED, Koa, etc...) must be loaded on the $beforeRoutesInit hook or on the specified hook. In addition, it's also possible to configure the environment for which the middleware should be loaded.

Since v7.4, the middlewares options accepts multiple format to register a native middleware (Express, Koa) and/or a Ts.ED middleware:

typescript
import {Configuration, ProviderScope, ProviderType} from "@tsed/di";

@Configuration({
  middlewares: [
    {use: "helmet", hook: "$afterInit", options: {contentSecurityPolicy: false}},
    {use: EnsureHttpsMiddleware, env: Env.PROD},
    "cors",
    cookieParser(),
    "json-parser", // you can add also the text-parser
    {use: "encodedurl-parser", options: {extended: true}},
    "compression",
    "method-override",
    AuthTokenMiddleware
  ]
})
export class Server {}

Order priority

The middlewares added through middlewares options will always be registered after the middlewares registered through the hook methods!

Here is an equivalent example to load middlewares with the hooks:

typescript
import {Configuration, ProviderScope, ProviderType} from "@tsed/di";
import {Env} from "@tsed/core";
import bodyParser from "body-parser";

@Configuration({})
export class Server {
  $afterInit() {
    this.app.use(helmet({contentSecurityPolicy: false}));
  }

  $beforeRoutesInit() {
    if (this.env === Env.PROD) {
      this.app.use(EnsureHttpsMiddleware);
    }

    this.app
      .use(cors())
      .use(cookieParser())
      .use(bodyParser.json())
      .use(bodyParser.urlencoded({extended: true}))
      .use(compress({}))
      .use(methodOverride())
      .use(AuthTokenMiddleware);

    return null;
  }
}

TIP

Prefer the 1st example if you use RawBodyParams in your application. Ts.ED will automatically configure the json-parser and urlencoded parser with the rawBody parser.

rawBody v7.4.0+

This option force the rawBody parser if Ts.ED doesn't detect the RawBodyParams usage in your code.

diff
@Configuration({
+  rawBody: true,
+  middlewares: [
+     {use: 'json-parser'},
+     {use: 'urlencoded-parser', options: {extended: true})
+  ]
})
export class Server {
  @Inject()
  protected app: PlatformApplication;

  $beforeRoutesInit() {
-    this.app
-      .use(bodyParser.json())
-      .use(bodyParser.urlencoded({extended: true}));
  }
}

imports

  • type: Type<any>[]

Add providers or modules here. These modules or provider will be built before the server itself.

scopes

  • type: {[key: string]: ProviderScope}

Change the default scope for a given provider. See injection scopes for more details.

typescript
import {Configuration, ProviderScope, ProviderType} from "@tsed/di";

@Configuration({
  scopes: {
    [ProviderType.CONTROLLER]: ProviderScope.REQUEST
  }
})
export class Server {}

logger

  • type: PlatformLoggerSettings

Logger configuration. See logger section for more detail.

resolvers - External DI

  • type: DIResolver

Ts.ED has its own DI container, but sometimes you have to work with other DI like Inversify or TypeDI. The version 5.39.0+ now allows you to configure multiple external DI by using the resolvers options.

The resolvers options can be configured as following:

ts
import {Configuration} from "@tsed/di";
import {myContainer} from "./inversify.config";

@Configuration({
  resolvers: [
    {
      get(token: any) {
        return myContainer.get(token);
      }
    }
  ]
})
export class Server {}

It's also possible to register resolvers with the Module decorator:

ts
import {Module} from "@tsed/di";
import {myContainer} from "./inversify.config";

@Module({
  resolvers: [
    {
      get(token: any) {
        return myContainer.get(token);
      }
    }
  ]
})
export class MyModule {}

views

Object to configure Views engines with Ts.ED engines or Consolidate (deprecated). See more on View engine.

acceptMimes

Configure the mimes accepted by default for each request by the server.

responseFilters

A list of response filters must be called before returning a response to the consumer. See more on Response filters.

multer

Object configure Multer. See more on Upload file.

router

typescript
@Configuration({
  router: {
    appendChildrenRoutesFirst: true
  }
})

router.appendChildrenRoutesFirst

  • type: boolean

Append children routes before the controller routes itself. Defaults to false, but will be deprecated and set to true in next major version.

jsonMapper

typescript
@Configuration({
  jsonMapper: {
    additionalProperties: false,
    disableUnsecureConstructor: true,
    strictGroups: false
  }
})

jsonMapper.additionalProperties

Enable additional properties on model. By default, false. Enable this option is dangerous and may be a potential security issue.

jsonMapper.disableUnsecureConstructor

Pass the plain object to the model constructor. By default, true.

It may be a potential security issue if you have as constructor with this followings code:

typescript
class MyModel {
  constructor(obj: any = {}) {
    Object.assign(this, obj); // potential prototype pollution
  }
}

jsonMapper.strictGroups

Enable strict mode for @Groups decorator. By default, false. See Groups for more information.

WARNING

The strictGroups option is enabled by default in the next major version of Ts.ED.

Platform Options

See specific platform options for:

HTTP & HTTPs server

Change address

It's possible to change the HTTP and HTTPS server address as follows:

typescript
import {Configuration} from "@tsed/common";

@Configuration({
  httpPort: "127.0.0.1:8081",
  httpsPort: "127.0.0.2:8082"
})
export class Server {}

Random port

Random port assignment can be enabled with the value 0. The port assignment will be delegated to the OS.

typescript
import {Configuration} from "@tsed/common";

@Configuration({
  httpPort: "127.0.0.1:0",
  httpsPort: "127.0.0.2:0"
})
export class Server {}

Or:

typescript
import {Configuration} from "@tsed/common";

@Configuration({
  httpPort: 0,
  httpsPort: 0
})
export class Server {}

Disable HTTP

typescript
import {Configuration} from "@tsed/common";

@Configuration({
  httpPort: false
})
export class Server {}

Disable HTTPS

typescript
import {Configuration} from "@tsed/common";

@Configuration({
  httpsPort: false
})
export class Server {}

Get configuration

The configuration can be reused throughout your application in different ways.

From service (DI)

typescript
import {Configuration, Injectable} from "@tsed/di";

@Injectable() // or Controller or Middleware
export class MyService {
  constructor(@Configuration() configuration: Configuration) {}
}

From decorators

Decorators Constant and Value can be used in all classes including:

Constant and Value accepts an expression as parameters to inspect the configuration object and return the value.

ts
import {Constant, Value} from "@tsed/di";
import {Env} from "@tsed/core";

export class MyClass {
  @Constant("env")
  env: Env;

  @Value("swagger.path")
  swaggerPath: string;

  $onInit() {
    console.log(this.env);
  }
}

WARNING

Constant returns an Object.freeze() value.

NOTE

The values for the decorated properties aren't available on constructor. Use $onInit() hook to use the value.

Released under the MIT License.