Package Exports
- create-heliumts-app
- create-heliumts-app/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-heliumts-app) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
create-heliumts-app
Create HeliumTS apps with one command.
Usage
npx create-heliumts-app my-appOr to scaffold in the current directory:
npx create-heliumts-app .Options
| Flag | Description |
|---|---|
--tailwind |
Use Tailwind CSS template (skips prompt) |
--no-tailwind |
Use basic template without Tailwind (skips prompt) |
# Use Tailwind CSS (default, skips prompt)
npx create-heliumts-app my-app --tailwind
# Use basic template without Tailwind (skips prompt)
npx create-heliumts-app my-app --no-tailwindWhat it does
- Asks if you want to use Tailwind CSS (defaults to Yes)
- Scaffolds a complete HeliumTS project with one of two templates:
tailwind- HeliumTS with Tailwind CSS pre-configured (default)basic- Standard HeliumTS setup
- Automatically runs
npm install
Requirements
- Node.js 18.0.0 or later
- npm, yarn, or pnpm
After Installation
cd my-app
npm run devAvailable Scripts
| Command | Description |
|---|---|
npm run dev |
Start development server |
npm run build |
Build for production |
npm run start |
Start production server |
Learn More
License
MIT