
Product
Announcing Bun and vlt Support in Socket
Bringing supply chain security to the next generation of JavaScript package managers
@kalxjs/cli
Advanced tools
Modern CLI tooling for kalxjs development workflow.
# Using npm
npm install -g @kalxjs/cli
# Using yarn
yarn global add @kalxjs/cli
# Using pnpm
pnpm add -g @kalxjs/cli
# Create a new project with interactive prompts
kalxjs create my-app
✔ Select a template
› TypeScript + Vite
› JavaScript + Vite
› TypeScript + Webpack
› Pure JavaScript
✔ Add features
☑ Router
☑ State Management
☑ Testing
☑ ESLint + Prettier
☑ Tailwind CSS
☑ PWA Support
# Create component with TypeScript and tests
kalxjs generate component MyComponent --typescript --test
# Create view/page component
kalxjs generate view Dashboard --layout default
# Generate API service
kalxjs generate service UserAPI --rest
# Create store module
kalxjs generate store user --typescript
# Start dev server with HMR
kalxjs dev --port 3000 --open
# Run unit tests
kalxjs test unit
# Run E2E tests
kalxjs test e2e
# Type check
kalxjs type-check
# Production build
kalxjs build --modern --analyze
# Deploy to various platforms
kalxjs deploy --platform vercel
kalxjs deploy --platform netlify
kalxjs deploy --platform azure
# Generate Docker configuration
kalxjs docker init
# Build container
kalxjs docker build
# Run containerized app
kalxjs docker run
Create kalxjs.config.ts in project root:
import { defineConfig } from '@kalxjs/cli'
export default defineConfig({
plugins: ['@kalxjs/pwa'],
build: {
target: 'esnext',
minify: 'esbuild'
},
test: {
coverage: true
}
})
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License.
FAQs
Command Line Interface for KalxJs framework
We found that @kalxjs/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.