PHPackages                             jankx/jankx - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. jankx/jankx

ActiveProject[Framework](/categories/framework)

jankx/jankx
===========

Jankx is a powerful WordPress theme framework. High performance, compatible, easy to use and develop

2.0.0(9mo ago)158[6 issues](https://github.com/jankx/jankx-lite/issues)MITPHPPHP &gt;=7.4CI passing

Since Jul 19Pushed 6mo agoCompare

[ Source](https://github.com/jankx/jankx-lite)[ Packagist](https://packagist.org/packages/jankx/jankx)[ RSS](/packages/jankx-jankx/feed)WikiDiscussions v2 Synced yesterday

READMEChangelog (3)Dependencies (10)Versions (6)Used By (0)

Jankx Framework Documentation
=============================

[](#jankx-framework-documentation)

Chào mừng đến với tài liệu Jankx Framework! Đây là nơi chứa tất cả các hướng dẫn, API reference, và best practices cho việc phát triển với Jankx Framework.

📚 Tài liệu có sẵn
-----------------

[](#-tài-liệu-có-sẵn)

### Core Framework

[](#core-framework)

- [Getting Started](getting-started.md) - Hướng dẫn bắt đầu với Jankx Framework
- [Architecture Overview](architecture.md) - Tổng quan kiến trúc framework
- [Service Providers](service-providers.md) - Hướng dẫn tạo và sử dụng service providers
- [Configuration](configuration.md) - Cấu hình framework và ứng dụng

### Integrations

[](#integrations)

- [WooCommerce Integration](woocommerce-integration.md) - Tích hợp với WooCommerce
- [Gutenberg Integration](gutenberg-integration.md) - Tích hợp với Gutenberg blocks
- [WordPress Integration](wordpress-integration.md) - Tích hợp với WordPress core

### Development

[](#development)

- [Block Development](block-development.md) - Phát triển custom blocks
- [Template Engine](template-engine.md) - Sử dụng template engine
- [Asset Management](asset-management.md) - Quản lý CSS, JS, và assets
- [Testing Guide](testing.md) - Hướng dẫn testing

### Advanced Topics

[](#advanced-topics)

- [Performance Optimization](performance.md) - Tối ưu hóa hiệu suất
- [Security Best Practices](security.md) - Bảo mật và best practices
- [Deployment Guide](deployment.md) - Hướng dẫn deploy
- [Troubleshooting](troubleshooting.md) - Xử lý sự cố

🚀 Bắt đầu nhanh
---------------

[](#-bắt-đầu-nhanh)

### 1. Cài đặt

[](#1-cài-đặt)

```
# Clone repository
git clone https://github.com/your-org/jankx-framework.git

# Install dependencies
composer install
npm install
```

### 2. Cấu hình

[](#2-cấu-hình)

```
// config/app.php
return [
    'name' => 'Your Theme',
    'version' => '1.0.0',
    // ... other config
];
```

### 3. Tạo Service Provider

[](#3-tạo-service-provider)

```
// includes/app/Providers/YourServiceProvider.php
