
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
@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 503 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.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.