npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@akanjs/cli

v1.0.8

Published

The official command-line interface for the Akan.js ecosystem, providing powerful development tools for creating, managing, and deploying modern web applications with ease.

Readme

⚡ Akan.js CLI

The official command-line interface for the Akan.js ecosystem, providing powerful development tools for creating, managing, and deploying modern web applications with ease.

🚀 Get Started

Prerequisites

  • Node.js >=20.x
  • pnpm >=10.x
  • docker
  • (temporary) access permission to akan-team github organization

How to create your project

npm install -g @akanjs/cli --latest
# or if you want to update, run below
# npm update -g @akanjs/cli --latest

akan create-workspace
# workspace name?
# application name?

How to start your project

cd <workspace-name> && akan start <app-name> --open

you can navigate to default webpage

  • home: http://localhost:4200

Recipes

# set llm model
akan set-llm

# create module
akan create-module

# create scalar
akan create-scalar

✨ Features

The @akanjs/cli is a comprehensive development toolkit that streamlines the entire application lifecycle:

🏗️ Workspace Management (workspace)

Complete workspace and project management:

  • 🚀 Project Initialization
    • create-workspace - Create new Akan.js workspace with organization setup
    • generate-mongo - Generate MongoDB configuration and setup
    • lint / lint-all - Code linting with auto-fix capabilities

📱 Application Lifecycle (application)

Full-stack application development and deployment:

  • 🔧 Application Management

    • create-application - Scaffold new applications with templates
    • remove-application - Clean application removal
    • sync-application - Synchronize application dependencies
  • 🏗️ Build System

    • build - Complete application build
    • build-backend - Server-side build optimization
    • build-frontend - Client-side build with Next.js
    • build-csr - Client-side rendering build
    • build-ios - iOS native app compilation
    • build-android - Android native app compilation
  • 🚀 Development Server

    • start - Full-stack development server
    • start-backend - GraphQL backend server
    • start-frontend - Next.js frontend server with Turbo support
    • start-csr - Client-side rendering server
    • start-ios - iOS simulator with live reload
    • start-android - Android emulator with live reload
  • 📦 Release Management

    • release-ios - iOS App Store deployment
    • release-android - Google Play deployment
    • release-source - Source code release with versioning
  • 🗄️ Database Operations

    • dump-database - Database backup across environments
    • restore-database - Database restoration with environment selection
    • pull-database - Pull remote database locally
    • dbup / dbdown - Local database container management

📚 Library Management (library)

Modular library system for code reusability:

  • 📦 Library Operations

    • create-library - Create new shared libraries
    • remove-library - Clean library removal
    • sync-library - Synchronize library dependencies
    • install-library - Install existing libraries into workspace
  • 🔄 Version Control Integration

    • push-library - Push library changes to remote repository
    • pull-library - Pull latest library updates

🧩 Module Development (module)

AI-powered module generation and management:

  • 🤖 Smart Module Creation

    • create-module - Generate modules with AI assistance
    • create-scalar - Create scalar data models
    • remove-module - Module cleanup with dependency checks
  • 🎨 Component Generation

    • create-view - Generate React view components
    • create-unit - Create reusable unit components
    • create-template - Generate component templates

📄 Page Generation (page)

Dynamic page scaffolding:

  • 📝 Page Management
    • create-page - Generate Next.js pages with routing

☁️ Cloud Integration (cloud)

Seamless cloud services and AI integration:

  • 🔐 Authentication

    • login / logout - Cloud service authentication
    • User session and credential management
  • 🤖 AI Development Assistant

    • set-llm / reset-llm - Configure AI language models
    • ask - Interactive AI development assistance
  • 🚀 Deployment

    • deploy-akan - Deploy to Akan.js cloud infrastructure
    • update - Update CLI and cloud integrations

📦 Package Operations (package)

NPM package management and publishing:

  • 🔧 Package Lifecycle
    • Package building and optimization
    • NPM publishing with versioning
    • Dependency management

📖 Usage Examples

Workspace Management

# Create new workspace
akan create-workspace "acme-corp" --app "web-app" --dir "./projects"

# Setup MongoDB for development
akan generate-mongo

# Lint entire workspace
akan lint-all --fix

Application Development

# Create new application
akan create-application "mobile-app" --start

# Start full development environment
akan start web-app --open

# Build for production
akan build web-app

# Start backend only
akan start-backend web-app --open  # Opens GraphQL playground

# Build and start mobile app
akan build-ios mobile-app
akan start-ios mobile-app --open --release

Library Management

# Create shared library
akan create-library "ui-components"

# Install existing library
akan install-library "util"

# Update library from remote
akan pull-library "shared" --branch main

# Push library changes (development)
akan push-library "ui-components" --branch feature/new-buttons

AI-Powered Module Creation

# Create module with AI assistance
akan create-module "user-profile" \
  --description "User profile management with avatar upload" \
  --schema-description "User entity with profile fields and file relationships" \
  --ai

# Create scalar data model
akan create-scalar "address" \
  --description "Address information for users" \
  --schema-description "Street, city, country, postal code fields"

# Generate view components
akan create-view  # Interactive selection
akan create-unit  # Interactive selection

Cloud & AI Integration

# Setup cloud authentication
akan login

# Configure AI assistant
akan set-llm

# Get AI development help
akan ask "How do I implement user authentication with JWT?"

Database Operations

# Backup production database
akan dump-database web-app --environment main

# Restore from staging to development
akan restore-database web-app --source develop --target debug

# Pull remote database locally
akan pull-database web-app --env debug --dump

# Start local database
akan dbup

🤖 AI-Powered Development

The CLI integrates advanced AI capabilities:

  • 🧠 Smart Code Generation - AI analyzes requirements and generates optimized code
  • 📋 Schema Intelligence - Automatic database schema generation from descriptions
  • 🔍 Context-Aware Assistance - AI understands your project structure for better suggestions
  • ⚡ Rapid Prototyping - Generate complete modules with business logic in seconds

🛠️ Advanced Features

  • 🔄 Hot Reload - Instant development feedback across all platforms
  • 📱 Cross-Platform - Build web, iOS, and Android from single codebase
  • 🎯 TypeScript First - Full TypeScript support with strict type checking
  • 🌐 GraphQL Integration - Built-in GraphQL server and client generation
  • 🔐 Security Built-in - JWT authentication, RBAC, and security best practices
  • 📊 Performance Monitoring - Built-in performance tracking and optimization
  • 🧪 Testing Framework - Integrated Jest and Playwright testing
  • 📦 Micro-frontends - Support for modular frontend architecture

🤝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing CLI feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

This project is part of the Akan.js ecosystem. See the main repository for license information.

🔗 Related Packages