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

https://github.com/yeasin2002/antopolis-backend


https://github.com/yeasin2002/antopolis-backend

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

### TypeScript - Express Starter

This is a starter project for TypeScript and Express. It includes a basic setup for a REST API with TypeScript and Express.

Kindly Star the Repository if you find it useful 🌟 and feel free to contribute if you think something can be improved.

#### Development Server

```bash
npm run dev
```

Note: For the first time, this might throw an error, but it will work after the first time. This is because the `dist` folder is not created yet.

#### Build

```bash
npm run build
```

#### Start Build Server (After Build)

```bash
npm run start
```

#### Shortcut for Build and Preview

```bash
npm run build && npm run start
```