Skip to content

๐Ÿ”ท๐ŸŒ TypeScript API Skeleton: Bootstrap your new HTTP API backend with TypeScript

Notifications You must be signed in to change notification settings

CodelyTV/typescript-api-skeleton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6fa32cf ยท Aug 6, 2023

History

7 Commits
Jul 6, 2021
Jul 6, 2021
Jul 6, 2021
Aug 4, 2023
Feb 6, 2023
Feb 6, 2023
Jul 6, 2021
Aug 6, 2023
Aug 4, 2023
Aug 4, 2023
Feb 6, 2023
Feb 6, 2023

Repository files navigation

TypeScript Express API Bootstrap (base / project starter)

This is a repository intended to serve as a starting point if you want to bootstrap a express API project in TypeScript.

Features

Running the app

# install dependencies
npm install

# run in dev mode on port 3000
npm run dev

# generate production build
npm run build

# run generated content in dist folder on port 3000
npm run start

Testing

Jest with supertest

npm run test

Linting

# run linter
npm run lint

# fix lint issues
npm run lint:fix