Thor is a powerful project scaffolding tool that helps you quickly create and manage project templates.
- 🚀 Quick project initialization
- 📦 Multiple template support
- 🔧 Customizable templates
- 🎯 Git integration
- 🎨 Code formatting
- 🛠 Multi-editor support (VSCode, Cursor)
brew install thor
git clone https://github.com/chenxingqiang/thor.git
cd thor
make install
Create a new React project:
thor init react my-app
Create a new component:
thor create component Button.tsx -t react
Generate a .gitignore file:
thor git ignore node
List available templates:
thor template list
Create a new template:
thor template create my-template -t project
Install template from repository:
thor template install https://github.com/user/template
Thor can be configured through ~/.config/thor/config
:
# Editor preferences
PREFERRED_EDITOR="cursor" # or "code", "vim"
# Template settings
DEFAULT_TEMPLATE="react"
CUSTOM_TEMPLATES_DIR="$HOME/.thor/templates"
- React (TypeScript + Tailwind)
- Next.js
- Vue
- Node.js
- React Components
- Vue Components
- Various .gitignore templates
Please see CONTRIBUTING.md for details.
This project is licensed under the MIT License - see the LICENSE file for details.