https://github.com/c-ehrlich/otel-express
https://github.com/c-ehrlich/otel-express
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/c-ehrlich/otel-express
- Owner: c-ehrlich
- Created: 2025-07-11T10:41:35.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-11T10:41:38.000Z (12 months ago)
- Last Synced: 2026-06-06T20:02:22.329Z (21 days ago)
- Language: TypeScript
- Size: 53.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Express v5 TypeScript Starter
A simple Express v5 starter project with TypeScript, Prettier, and ESLint.
## Features
- Express v5
- TypeScript
- Prettier for code formatting
- ESLint for code linting
- One GET route that takes a name parameter: `/hello/:name`
## Installation
```bash
npm install
```
## Development
```bash
npm run dev
```
## Build
```bash
npm run build
```
## Run
```bash
npm start
```
## Linting
```bash
npm run lint
npm run lint:fix
```
## Formatting
```bash
npm run format
npm run format:check
```
## API
- `GET /hello/:name` - Returns "Hello {name}"
Example: `GET /hello/world` returns "Hello world"