Skip to content
This repository was archived by the owner on May 30, 2021. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 571 Bytes

File metadata and controls

23 lines (17 loc) · 571 Bytes

kea-cli

To get started with a new kea project, just type these commands:

npm install kea-cli -g
kea new my-project
cd my-project
npm install # or yarn
npm start   # or yarn start

and open http://localhost:2000/.

Later inside my-project run these to hack away:

kea g scene-name                               # new scene
kea g scene-name/component-name                # component under the scene
kea g scene-name/component-name/really-nested  # deeply nested logic

More documentation coming soon! Please help if you can!