create-tropa
v1.0.18
Published
Tropa' application generator
Downloads
5
Readme
create-tropa
create-tropa
is a generator of tropa applications
Quick Start
Init App
npm init tropa hello-world
The npm init
command will create tropa
project at the ./hello-world
directory.
It is possible to generate TypeScript app too, just add --lang=ts
npm init tropa hello-world -- --lang=ts
Open project directory
cd ./hello-world
Debug app
npm run debug
Compile app
npm run build
Start compiled app
npm run start
Run tests
npm run test
Perform code analyse
npm run lint