An open API service indexing awesome lists of open source software.

https://github.com/ngimdock/express-typescript-starter

Express + Typescript + Eslint + Prettier starter project
https://github.com/ngimdock/express-typescript-starter

eslint expressjs prettier typescript

Last synced: 3 months ago
JSON representation

Express + Typescript + Eslint + Prettier starter project

Awesome Lists containing this project

README

          

# Express-typescript-starter

Express + Typescript + Eslint + Prettier starter project

# Setup the project

## Step1: Clone the project

```bash
git clone https://github.com/ngimdock/express-typescript-starter.git
```

## Step2: Install dependencies

```bash
yarn install
```

## Step3: Setup .env file

```bash
cp .env.example .env
```

Complete the required enviroments variables in the .env file

## Step4: Start the project in development mode

```bash
yarn dev
```

# Note: Have issue port already in use

Kill the process in the runing port of your server, asuming you are using the port 8000.
Run the command:

```bash
sudo kill -9 `sudo lsof -t -i:8000`
```

That's all 🌞