https://github.com/stylelist94/create-stylish-app
Create a new Stylish JavaScript web app.
https://github.com/stylelist94/create-stylish-app
Last synced: about 1 month ago
JSON representation
Create a new Stylish JavaScript web app.
- Host: GitHub
- URL: https://github.com/stylelist94/create-stylish-app
- Owner: StyleList94
- Created: 2022-03-13T15:10:21.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T16:35:11.000Z (over 1 year ago)
- Last Synced: 2024-10-25T14:41:29.967Z (over 1 year ago)
- Language: JavaScript
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Create Stylish App
Create a new Stylish JavaScript web app.
## App Template
All templates are available from [stylish-app-kit](https://github.com/StyleList94/stylish-app-kit):
- `next` - Next.js App
- `react` - React App (Vite)
- `astro` - Astro App
- `ethereum` - Ethereum DApp
- `extension` - Chrome Extension
- `ui` - UI Kit
## Getting Started
```bash
# pnpm
pnpm create stylish-app [app-name] [-t template-name]
# npm
npx create-stylish-app [app-name] [-t template-name]
# yarn
yarn create stylish-app [app-name] [-t template-name]
```
## Options
- `-t, --template ` - Template to use (`next`, `react`, `astro`, `ethereum`, `extension`, `ui`)
## Example
```bash
# interactive mode
pnpm create stylish-app
# with app name only (select template interactively)
pnpm create stylish-app my-app
# with template flag
pnpm create stylish-app my-app -t react
```