Skip to main content
Home
This release is 1 version behind 0.0.18 — the latest version of @huuma/cli. Jump to latest

@huuma/cli@0.0.17
Built and signed on GitHub Actions

Huuma CLI is a command-line tool for creating and managing Huuma applications. It provides utility commands to streamline Huuma application development.

This package works with DenoIt is unknown whether this package works with Node.js, Bun, Browsers
It is unknown whether this package works with Node.js
This package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
100%
Published
2 months ago (0.0.17)

Huuma CLI

JSR Score JSR Version

Huuma CLI is a command-line tool for creating and managing Huuma applications. It provides utility commands to streamline Huuma application development.

Note: Huuma CLI is currently in early development. Options and commands might change in future versions. Use with caution!

Installation

deno install -A -f -g -r -n huuma jsr:@huuma/cli

Usage

huuma [OPTIONS] [COMMAND]

Options

Option Description
-h, --help Display help information
-V, --version Show current version of Huuma CLI

Commands

Command Description
p, project Create a new project structure
u, upgrade Upgrade Huuma CLI to the latest version

Creating a New Project

You can create a new Huuma project with the following command:

huuma project

The CLI will prompt you for:

  1. Project name - The name of your new project (will be created as a directory)
  2. Project type - Currently supports website applications

Project Types

Website

Creates a basic Huuma website application with the following structure:

your-project-name/
├── assets/
├── pages/
│   ├── page.tsx
│   └── root.tsx
├── src/
├── app.ts
├── dev.ts
└── deno.json
  • assets/ - Directory for static assets
  • pages/ - Directory for page components
  • src/ - Directory for application source code
  • app.ts - Main application entry point
  • dev.ts - Development server entry point
  • deno.json - Deno configuration file

Available Scripts

After creating a project, you can use the following commands from your project directory:

# Start development server with hot reloading
deno task dev

# Bundle the application for production
deno task bundle

# Start the production server
deno task start

Requirements

License

MIT


Built with ❤️ by the Huuma team

Built and signed on
GitHub Actions

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@huuma/cli

Import symbol

import * as cli from "@huuma/cli";
or

Import directly with a jsr specifier

import * as cli from "jsr:@huuma/cli";

Add Package

pnpm i jsr:@huuma/cli
or (using pnpm 10.8 or older)
pnpm dlx jsr add @huuma/cli

Import symbol

import * as cli from "@huuma/cli";

Add Package

yarn add jsr:@huuma/cli
or (using Yarn 4.8 or older)
yarn dlx jsr add @huuma/cli

Import symbol

import * as cli from "@huuma/cli";

Add Package

vlt install jsr:@huuma/cli

Import symbol

import * as cli from "@huuma/cli";

Add Package

npx jsr add @huuma/cli

Import symbol

import * as cli from "@huuma/cli";

Add Package

bunx jsr add @huuma/cli

Import symbol

import * as cli from "@huuma/cli";