Express with Typescript

Updated: 03 September 2023

Based on this Medium Article

Introduction

Typescript is basically statically typed ES6 with the ability to compile to javascript, this allows us to code in a manner that better equips us to catch type errors before runtime

Setting Up a Typescript Application

A New Application

Terminal window
1
npm init
2
npm install typescript -a

Initialising a Typescript Project

In the package.json add a script to run typescript

1
"scripts": {
2
"tsc": "tsc"
3
},

We can then generate the tsconfig.json file with

Terminal window
1
npm run tsc -- --init

After which we can uncomment the outDir property in the tsconfig.json file to specify where to put the Javascript output

1
{
2
"compilerOptions": {
3
/* Basic Options */
4
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
5
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
6
// "lib": [], /* Specify library files to be included in the compilation. */
7
// "allowJs": true, /* Allow javascript files to be compiled. */
8
// "checkJs": true, /* Report errors in .js files. */
9
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
10
// "declaration": true, /* Generates corresponding '.d.ts' file. */
11
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
12
// "sourceMap": true, /* Generates corresponding '.map' file. */
13
// "outFile": "./", /* Concatenate and emit output to single file. */
14
"outDir": "./build", /* Redirect output structure to the directory. */
15
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
16
// "composite": true, /* Enable project compilation */
17
// "removeComments": true, /* Do not emit comments to output. */
18
// "noEmit": true, /* Do not emit outputs. */
19
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
20
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
21
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
22
23
/* Strict Type-Checking Options */
24
"strict": true, /* Enable all strict type-checking options. */
25
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
26
// "strictNullChecks": true, /* Enable strict null checks. */
27
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
28
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
29
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
30
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
31
32
/* Additional Checks */
33
// "noUnusedLocals": true, /* Report errors on unused locals. */
34
// "noUnusedParameters": true, /* Report errors on unused parameters. */
35
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
36
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
37
38
/* Module Resolution Options */
39
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
40
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
41
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
42
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
43
// "typeRoots": [], /* List of folders to include type definitions from. */
44
// "types": [], /* Type declaration files to be included in compilation. */
45
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
46
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
47
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
48
49
/* Source Map Options */
50
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
51
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
52
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
53
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
54
55
/* Experimental Options */
56
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
57
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
58
}
59
}

Setting Up Server

Installing Express

We need to install Express and Express Types so that Typescript can be type aware

Terminal window
1
npm install express -s
2
npm install @types/express -s

Building the Server

Now we can create a simple express server with the following file

1
import express = require('express');
2
3
// Create a new express application instance
4
const app: express.Application = express();
5
6
app.get('/', function (req, res) {
7
res.send('Hello World!');
8
});
9
10
app.listen(3000, function () {
11
console.log('Example app listening on port 3000!');
12
});

Running the App

Compile the Application

The App must be compiled before it can be run, we do this with the following command

Terminal window
1
npm run tsc

Which will place our app.ts file into the build folder

Run the Server

We can run the application by simply doing

Terminal window
1
node .\build\app.js

And viewing the application at localhost:3000

Running without Transpiling

We can run the typescript directly without transpiling with the following

Terminal window
1
npm install ts-node-dev -s

And by then adding the following to our package.json

1
"scripts": {
2
"tsc": "tsc",
3
"dev": "ts-node-dev --respawn --transpileOnly ./app/app.ts",
4
"prod": "tsc && node ./build/app.js"
5
},

We can run the dev server with

Terminal window
1
npm run dev

And the production server with

Terminal window
1
npm run prod