zettca / create-uikit-app

Scaffolding for UI Kit Apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

create-uikit-app

Based on create-vite

Scaffolding for a UI Kit Apps

Compatibility Note: Vite requires Node.js version >=14.18.0. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.

With NPM:

npm create uikit-app

With Yarn:

yarn create vite

With PNPM:

pnpm create vite

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:

# npm 6.x
npm create uikit-app my-uikit-app --template minimal

# npm 7+, extra double-dash is needed:
npm create uikit-app my-uikit-app -- --template minimal

# yarn
yarn create uikit-app my-uikit-app --template minimal

# pnpm
pnpm create uikit-app my-uikit-app --template minimal

Currently supported template presets include:

  • minimal
  • full

You can use . for the project name to scaffold in the current directory.

About

Scaffolding for UI Kit Apps

License:MIT License


Languages

Language:JavaScript 60.6%Language:TypeScript 35.6%Language:HTML 2.8%Language:CSS 0.9%