Awesome
π·π± TypeScript Basic Skeleton
Template intended to serve as a starting point if you want to bootstrap a project in TypeScript.
The purpose of this repository is to leave it with the bare minimum dependencies and tools needed to run TypeScript snippets or start you project without any opinionated decision already made.
Features
- TypeScript (v5)
- ESLint with Codely's config (includes ESLint's recommended rules, Prettier, Import plugin and more)
- Jest
- GitHub Action workflows set up to run tests and linting on push
- SWC: Execute your tests in less than 200ms
Working with this project
- Install the dependencies:
npm install
- Execute the tests:
npm run test
- Check linter errors:
npm run lint
- Fix linter errors:
npm run lint:fix
There is no specific command to start the app, we leave that up to you. If you wish to create a specific type of app (web, APIβ¦), we recommend checking the templates below.
Related skeleton templates
Opinionated TypeScript skeletons ready for different purposes:
- π·πΈοΈ TypeScript Web Skeleton
- π·π TypeScript API Skeleton
- π·β¨ TypeScript DDD Skeleton
This very same basic skeleton philosophy implemented in other programming languages: