https://github.com/vkcom/create-vkui-app
https://github.com/vkcom/create-vkui-app
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vkcom/create-vkui-app
- Owner: VKCOM
- License: mit
- Archived: true
- Created: 2022-11-23T09:31:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T21:13:20.000Z (over 2 years ago)
- Last Synced: 2024-12-27T09:38:16.335Z (over 1 year ago)
- Language: JavaScript
- Size: 737 KB
- Stars: 6
- Watchers: 11
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Deprecated
> **Warning**
>
> Please use https://github.com/VKCOM/create-vk-mini-app.
# Create VKUI App
## How to use
### With NPX
```bash
npx create-vkui-app
```
[NPX](https://github.com/npm/npx) allows you to always use the **latest** version of the package without a global installation.
### With installing the package globally
Install the package globally via yarn
```bash
yarn global add create-vkui-app
```
and use as follows
```bash
create-vkui-app
```
This way is less recommended because you will have to update the package yourself.
#### `--help` or `-h`
Prints the synopsis and a list of options
## Scripts
Inside the newly created project, you can run some built-in commands:
#### `yarn start`
Runs the app in development mode. Open http://localhost:8080 to view it in the browser.
The page will automatically reload if you make changes to the code. You will see the build errors and lint warnings in the console.
#### `yarn run build`
Builds the app for production to the build folder. It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed.