Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sylhare/typescript-seed
Seed project for typescript
https://github.com/sylhare/typescript-seed
template template-project typescript
Last synced: about 2 months ago
JSON representation
Seed project for typescript
- Host: GitHub
- URL: https://github.com/sylhare/typescript-seed
- Owner: sylhare
- License: mit
- Created: 2024-03-01T19:36:00.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-10T16:59:59.000Z (10 months ago)
- Last Synced: 2024-10-12T19:33:41.425Z (3 months ago)
- Topics: template, template-project, typescript
- Language: TypeScript
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Typescript-seed
Seed project for typescript.
Use this repository as a template for your typescript projects.## Getting Started
Install the dependencies:
```bash
npm install
```Build the project:
```bash
npm run build
```Run the project:
```bash
npm start
```Test the project using *Jest*:
```bash
npm test
# To test and display the coverage
npm test:cov
```Lint the project using *ESLint*:
```bash
npm run lint
# To fix the linting errors
npm run lint:fix
```