# ts-express-kit

> Minimal TypeScript + Express.js backend starter kit

**ts-express-kit** helps you quickly set up a Node.js backend using TypeScript and Express, with built-in ESLint and Prettier for code quality and formatting.

## Features

- TypeScript support with strict config
- Express.js server starter
- ESLint and Prettier integrated
- Pre-configured for modern Node (ESNext, nodenext modules)
- Ready for API development (CORS, error handling, basic structure)

## Getting Started

### 1. Install

```bash
npx ts-express-kit my-backend-app
cd my-backend-app
npm run dev
```
