Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 30, 2021 07:32 am GMT

Setting up Express Server with TypeScript

Express.js is a web application framework that is built on top of Node.js. It provides a minimal interface with all the tools required to build a web application. Express.js adds flexibility to an application with a huge range of modules available on npm that you can directly plug into Express as per requirement.

Step 1: Create a .gitignore file

Add node_modules/ and .env in it as we don't want node modules to be pushed to GitHub and also our secret keys to be publicly available.

node_modules/.env
Enter fullscreen mode Exit fullscreen mode

Step 2: Add dependencies

You may use yarn or npm (I am using yarn here).

yarn add for dependencies

yarn add -D for dev dependencies

NOTE: We might add more later on... and discuss them as we move along. Also, the version may be newer for you or some of the packages may be deprecated in the future. Also as we are using typescript we require type-definitions (@types) of all dependencies we have added

The dependencies shown below are the basic ones I think are required for the server to be up and running.

"dependencies": {    "colors": "^1.4.0",    "cors": "^2.8.5",    "dotenv": "^8.2.0",    "express": "^4.17.1",  },  "devDependencies": {    "@types/cors": "^2.8.9",    "@types/express": "^4.17.9",    "concurrently": "^5.3.0",    "nodemon": "^2.0.6"  }
Enter fullscreen mode Exit fullscreen mode

Step 3: Create tsconfig.json file and add the following

Configuring TypeScript

You might want to look at the official documentation providing more insights for configuring TypeScript and study more parameters available and use according to your needs.

{  "compilerOptions": {    /* Basic Options */    "target": "es6" /* Specify ECMAScript target version. */,    "module": "commonjs" /* Specify module code generation. */,    "sourceMap": false /* Generates corresponding '.map' file. */,    "outDir": "./dist" /* Redirect output structure to the directory. */,    "rootDir": "./src" /* Specify the root directory of input files. */,    /* Strict Type-Checking Options */    "strict": true /* Enable all strict type-checking options. */,    /* Module Resolution Options */    "moduleResolution": "node" /* Specify module resolution strategy. */,    "baseUrl": "./" /* Base directory to resolve non-absolute module names. */,    "paths": {      "*": ["node_modules/", "src/types/*"]    } ,    "esModuleInterop": true ,    /* Advanced Options */    "skipLibCheck": true /* Skip type checking of declaration files. */,    "forceConsistentCasingInFileNames": true   },  "include": ["src/**/*"],"exclude": ["src/types/*.ts", "node_modules", ".vscode"]}
Enter fullscreen mode Exit fullscreen mode

Step 4: Create the main file

Create an src folder in your directory and add an app.ts file with the following contents to get your express server up and running.

Relative Path: src/app.ts

import express, { Application, json, Request, Response } from "express";import "colors";import cors from "cors";import { config } from "dotenv";config();const app: Application = express();app.use(cors());app.use(json());const PORT: string | number = process.env.PORT || 5000;const ENV: string = process.env.NODE_ENV || "development";app.get("/", (_req: Request, res: Response) => {  return res.send("API Running...");});app.listen(PORT, () =>  console.log(    `  Backend server: `.inverse.yellow.bold +      ` Running in ${ENV} mode on port ${PORT}`  ));
Enter fullscreen mode Exit fullscreen mode

Step 5: Setting up running scripts

Add the following to the package.json file

"scripts": {    "watch-ts": "tsc -w",    "server": "nodemon dist/app.js",    "dev": "concurrently -k -p \"[{name}]\" -n \"Typescript,Node\" -c \"blue.bold,yellow.bold\" \"yarn run watch-ts\" \"yarn run server\" "  }
Enter fullscreen mode Exit fullscreen mode

Now run "yarn run dev " to start our server and voila we have our server up and running.

Alt Text

You should see this as your output in the terminal and dist/ directory should appear in your project containing all the JavaScript code with ES6 syntax.

Also, there's a ts-node package that runs node server using TypeScript files without any need to generate any JavaScript files.


Original Link: https://dev.to/tejastn10/setting-up-express-server-with-typescript-3dg5

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To