https://github.com/111tokyo/ts-quickstart-boilerplate
🚀 A TypeScript boilerplate for quickly setting up new projects.
https://github.com/111tokyo/ts-quickstart-boilerplate
javascript nodejs prisma prisma-orm ts ts-node typescript typescript-boilerplate
Last synced: 3 months ago
JSON representation
🚀 A TypeScript boilerplate for quickly setting up new projects.
- Host: GitHub
- URL: https://github.com/111tokyo/ts-quickstart-boilerplate
- Owner: 111tokyo
- Created: 2025-03-08T11:31:09.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-22T11:02:10.000Z (3 months ago)
- Last Synced: 2025-03-22T12:18:56.615Z (3 months ago)
- Topics: javascript, nodejs, prisma, prisma-orm, ts, ts-node, typescript, typescript-boilerplate
- Language: TypeScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 ts-quickstart-boilerplate
A TypeScript boilerplate for quickly setting up new projects.
## 📋 Description
This project serves as a template to rapidly initiate development with TypeScript. It includes a basic configuration with essential packages for TypeScript development.
## 📂 Project Structure
```
ts-quickstart-boilerplate/
├── dist/
├── prisma/
│ └── schema.prisma
├── src/
│ └── main.ts
├── package.json
└── tsconfig.json
```- **src/**: Contains the TypeScript source code.
- **prisma/**: Holds the Prisma schema file for database management.
- **dist/**: Output directory for compiled code.## 📦 Installation
1. Clone the repository:
```bash
git clone https://github.com/your-username/ts-quickstart-boilerplate.git
```2. Navigate to the project directory:
```bash
cd ts-quickstart-boilerplate
```3. Install dependencies:
```bash
npm install
```## 🛠️ Usage
- **Development Mode**: Start the application with automatic restarts on code changes.
```bash
npm run dev
```- **Build**: Compile TypeScript code to JavaScript.
```bash
npm run build
```- **Production Mode**: Run the compiled application.
```bash
npm start
```## 📄 License
This project is licensed under the ISC License.