create-stylish-app
v1.0.4
Published
Create Stylish JavaScript web app
Downloads
183
Readme
Create Stylish App
Create a new Stylish JavaScript web app.
App Template
- Next.js App:
next
- Ethereum DApp:
ethereum
- React App:
react
- Pure(Webpack) React App:
pure-react
- Vanilla App:
vanilla
- Web App:
web
Getting Started
# npm
npx create-stylish-app <app-name> [--template template-name]
# yarn
yarn create stylish-app <app-name> [--template template-name]
# pnpm
pnpm create stylish-app <app-name> [--template template-name]
Options
create-stylish-app
supports the following options:
- -t, --template [template-name] - The template to use. You can use the following templates
next
,ethereum
,react
,pure-react
,vanilla
,web
. default:next
Example
# using default(next) template
npx create-stylish-app my-app
# using react template
npx create-stylish-app my-app --template react