https://github.com/ospoon/create-tlist
https://github.com/ospoon/create-tlist
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ospoon/create-tlist
- Owner: OSpoon
- Created: 2022-09-26T15:38:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-26T15:40:03.000Z (over 3 years ago)
- Last Synced: 2025-05-19T05:06:02.699Z (about 1 year ago)
- Language: TypeScript
- Size: 25.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# create-tlist
## Scaffolding Your First Project
With NPM:
```bash
$ npm create tlist
```
With Yarn:
```bash
$ yarn create tlist
```
With PNPM:
```bash
$ pnpm create tlist
```
Then follow the prompts!
You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite + Vue project, run:
```bash
# npm 6.x
npm create tlist@latest my-vue-app --template vue
# npm 7+, extra double-dash is needed:
npm create tlist@latest my-vue-app -- --template vue
# yarn
yarn create tlist my-vue-app --template vue
# pnpm
pnpm create tlist my-vue-app --template vue
```
Currently supported template presets include:
- `vue`
- `vue-ts`
You can use `.` for the project name to scaffold in the current directory.