🚀 DAY 2 OF LAUNCH WEEK: Unify Your Security Stack with Socket Basics.Learn more →
Socket
Book a DemoInstallSign in
Socket

@oxog/praxis-cli

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oxog/praxis-cli

CLI tool for Praxis framework - scaffold projects, manage components, and more

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Praxis CLI

Command-line interface for the Praxis framework.

Installation

npm install -g @oxog/praxis-cli

Usage

Create a new project

praxis create my-app

Generate components

praxis generate component MyComponent

Start development server

praxis dev

Build for production

praxis build

Run tests

praxis test

Commands

  • create <project-name> - Create a new Praxis project
  • generate <type> <name> - Generate components, stores, etc.
  • dev - Start development server
  • build - Build for production
  • test - Run tests
  • lint - Run linter
  • upgrade - Upgrade Praxis dependencies

Options

  • -v, --version - Show version
  • -h, --help - Show help
  • --verbose - Enable verbose logging
  • --no-install - Skip dependency installation

Templates

The CLI supports multiple project templates:

  • default - Basic Praxis setup
  • typescript - TypeScript configuration
  • tailwind - With Tailwind CSS
  • full - Full-featured setup with all tools

Configuration

Create a praxis.config.js file in your project root:

export default {
  // CLI configuration
  cli: {
    defaultTemplate: 'typescript',
    packageManager: 'npm' // or 'yarn', 'pnpm'
  }
}

License

MIT

Keywords

praxis

FAQs

Package last updated on 01 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts