
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@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
The npm package @kalxjs/cli receives a total of 0 weekly downloads. As such, @kalxjs/cli popularity was classified as not popular.
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.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.