How to Create a TypeScript Project with ExpressJS the Simplest Way!!

If you are wondering how to create a TypeScript BackEND project, fear not my brave knight. It’s way easier than you can ever imagine!! Let go!

Step 1

First init our project by running npm init -y on our terminal, it’ll create a package.json…


This content originally appeared on DEV Community and was authored by SilvenLEAF

If you are wondering how to create a TypeScript BackEND project, fear not my brave knight. It's way easier than you can ever imagine!! Let go!

Step 1

First init our project by running npm init -y on our terminal, it'll create a package.json file. Then let's install these packages by running the following command on our terminal

npm i typescript ts-node express @types/node @types/express

typescript is the core package for typescript, ts-node is the node version for runnig .ts files just as we do with node app.js, in this case we do, ts-node app.ts. @types/node and @types/express has all the types for node and express respectively. You say why? Well typescript is all about type na :)

Bonus Step

Now let's install some helping dev stuff

npm i --D nodemon ts-node-dev

ts-node-dev package binds nodemon with typescript. The typescript version for nodemon app.js is ts-node-dev app.ts

Now let's update our package.json file

  ....keep others unchanged
  "main": "app.ts",
  "scripts": {
    "start": "ts-node app.ts",
    "dev": "ts-node-dev app.ts"
  },
  ...keep others unchanged

Step 2

Run the following command, it'll will create a tsconfig.json file.

tsc --init

Step 3

Let's create an express App
Write these on the app.ts file that we created

import express, { Request, Response } from 'express';
import path from 'path';




// -------------------firing express app
const app = express();
app.use(express.json());
app.use(express.urlencoded({extended:false}));
app.use(express.static(path.join(__dirname, 'client/build')));




// -------------------routes
app.get('/home', (request: Request, response: Response)=>{
  console.log(request.url)
  response.json({ message: `Welcome to the home page!` })
});



// --------------------Listen
const PORT = process.env.PORT || 5000;
app.listen(5000, ()=>{
  console.log(`Server running on PORT ${ PORT }`);
})

Yippie, our very first typescript express app is ready. Let's run and test it

Type either npm start or npm run dev and then go to the localhost:5000 and test it out yourself. Enjoy!


This content originally appeared on DEV Community and was authored by SilvenLEAF


Print Share Comment Cite Upload Translate Updates
APA

SilvenLEAF | Sciencx (2021-06-21T02:47:34+00:00) How to Create a TypeScript Project with ExpressJS the Simplest Way!!. Retrieved from https://www.scien.cx/2021/06/21/how-to-create-a-typescript-project-with-expressjs-the-simplest-way/

MLA
" » How to Create a TypeScript Project with ExpressJS the Simplest Way!!." SilvenLEAF | Sciencx - Monday June 21, 2021, https://www.scien.cx/2021/06/21/how-to-create-a-typescript-project-with-expressjs-the-simplest-way/
HARVARD
SilvenLEAF | Sciencx Monday June 21, 2021 » How to Create a TypeScript Project with ExpressJS the Simplest Way!!., viewed ,<https://www.scien.cx/2021/06/21/how-to-create-a-typescript-project-with-expressjs-the-simplest-way/>
VANCOUVER
SilvenLEAF | Sciencx - » How to Create a TypeScript Project with ExpressJS the Simplest Way!!. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/06/21/how-to-create-a-typescript-project-with-expressjs-the-simplest-way/
CHICAGO
" » How to Create a TypeScript Project with ExpressJS the Simplest Way!!." SilvenLEAF | Sciencx - Accessed . https://www.scien.cx/2021/06/21/how-to-create-a-typescript-project-with-expressjs-the-simplest-way/
IEEE
" » How to Create a TypeScript Project with ExpressJS the Simplest Way!!." SilvenLEAF | Sciencx [Online]. Available: https://www.scien.cx/2021/06/21/how-to-create-a-typescript-project-with-expressjs-the-simplest-way/. [Accessed: ]
rf:citation
» How to Create a TypeScript Project with ExpressJS the Simplest Way!! | SilvenLEAF | Sciencx | https://www.scien.cx/2021/06/21/how-to-create-a-typescript-project-with-expressjs-the-simplest-way/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.