https://github.com/eunchurn/create-eunchurn-app
Create eunchurn App
https://github.com/eunchurn/create-eunchurn-app
create-app create-eunchurn-app typescript vanilla-javascript webpack
Last synced: 3 months ago
JSON representation
Create eunchurn App
- Host: GitHub
- URL: https://github.com/eunchurn/create-eunchurn-app
- Owner: eunchurn
- License: mit
- Created: 2023-01-12T06:09:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-25T16:46:58.000Z (about 2 years ago)
- Last Synced: 2024-04-25T17:53:03.595Z (about 2 years ago)
- Topics: create-app, create-eunchurn-app, typescript, vanilla-javascript, webpack
- Language: TypeScript
- Homepage:
- Size: 3.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Create eunchurn App
```
> npx create-eunchurn-app my-app
? description Hello. This is my app
? Author name Eunchurn Park
? Author email eunchurn@eunchurn.io
? License MIT
? Package manager to use for installing packages from npm pnpm
```
## Usage
```bash
npx create-eunchurn-app
npm init eunchurn-app
yarn create eunchurn-app
```
## Templates
```bash
npx create-eunchurn-app --template=
```
### `default`
Default TypeScript App
```bash
npx create-eunchurn-app
```
### `vanilla-ts`
Minimum setting for VanillaJS, HTML webpage
**required NodeJS version over 12.x**
- VanillaJS
- Typescript
- Webpack
- Pure CSS
- Autoprefixer (`postcss-loader`)
- Assets(`public`)
- Browser Sync (dev web server)
- Minimization(Image, HTML, CSS, JS) on production
- `gh-pages` Deployment
```bash
npx create-eunchurn-app --template=vanilla-ts
```