create-tiger-app
v0.1.2
Published
Scaffold a new, blank Tiger app in one command. No build step, no dependencies.
Downloads
427
Maintainers
Readme
create-tiger-app
Scaffold a new, blank Tiger app in one command.
npm create tiger-app my-app
# or
npx create-tiger-app my-appThen:
cd my-app
npm startOpen http://localhost:5000, edit a file, refresh. That is the whole loop.
What you get
A blank project with the framework's full shape, ready to fill in:
my-app/
├── tiger.js the framework
├── ui/ the Solar kit: design tokens + t- components
├── app.html the shell, with <page>
├── app.css your styles (the kit's tokens are yours to use)
├── shared.cells your shared state
├── components.json the manifest (the t- components are pre-registered)
├── components/ your components (empty)
├── pages/ your screens (home.html to start)
├── assets/ your images and files (empty)
└── serve.js the dev serverNo build step. No node_modules. Zero dependencies.
Want a worked example instead of a blank slate? Take the demo starter:
npx degit NmiriHoussem/tiger-starter my-app.
