https://github.com/ihcccjs/create-ihccc
Scaffolding Your Admin Project.
https://github.com/ihcccjs/create-ihccc
Last synced: 9 months ago
JSON representation
Scaffolding Your Admin Project.
- Host: GitHub
- URL: https://github.com/ihcccjs/create-ihccc
- Owner: IhcccJS
- Created: 2024-06-03T06:35:32.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-27T10:32:17.000Z (over 1 year ago)
- Last Synced: 2025-02-23T05:43:16.560Z (over 1 year ago)
- Language: TypeScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# create-ihccc
## Scaffolding Your Admin Project
> **Compatibility Note:**
> ihccc requires [Node.js](https://nodejs.org/en/) version 18+, 20+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.
With NPM:
```bash
$ npm create ihccc@latest
```
With Yarn:
```bash
$ yarn create ihccc
```
With PNPM:
```bash
$ pnpm create ihccc
```
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 ihccc + Admin project, run:
```bash
# npm 7+, extra double-dash is needed:
npm create ihccc@latest my-app --template ihccc-admin
# yarn
yarn create ihccc my-app --template ihccc-admin
# pnpm
pnpm create ihccc my-app --template ihccc-admin
```
Currently supported template presets include:
- `ihccc-admin`
- `ihccc-server`
You can use `.` for the project name to scaffold in the current directory.