create-test-vkui-app
v2.0.0
Published
Basic VKUI template app
Downloads
8
Readme
Create VKUI App
How to use
With NPX
npx create-vkui-app <project-directory>
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
yarn global add create-vkui-app <project-directory>
...or npm
npm install --global create-vkui-app <project-directory>
and use as follows
create-vkui-app <project-directory>
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
or npm start
Runs the app in development mode. Open http://localhost:3000 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
or npm 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.