Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.16 KB

README.md

File metadata and controls

30 lines (23 loc) · 1.16 KB

Express.js Application with TypeScript

This project is a simple template for building an Express.js application using TypeScript. It includes an example setup for routes, environment configuration, and a development workflow using nodemon for automatic code reloads on changes.

Prerequisites

Ensure that you have the following installed on your machine:

Installation

Run the following command to download and run the application

git clone https://github.com/mrpcodecraft/express-ts-starter-template.git
cd express-ts-starter-template
npm install

Next steps

Add the .env file in the root folder and add values for ENV and PORT Now run the following command to start the server.

npm start

You can access the application at http://localhost:[ PORT ]


This README.md includes only cloning and setting up the template. For a detailed description to create an application by yourself please refer to README/SETUP.md.