High-performance platform for building websites, e-commerce, and web applications—with Native AI, JavaScript development, and a marketplace for portable sites and apps.
341
stars
2,829
commits
Sep 11, 2026
updated
Kooboo is one integrated platform for creating websites, online stores, and business applications.
AI website creation, visual editing, content management, databases, ecommerce, email, analytics, hosting, development, and deployment all work together in one portable system.
Build a real website in minutes. Edit every part. Run it anywhere. Keep control of the result.
Download the latest release · Start with Kooboo Cloud · Documentation · Report an issue

Free to use. Not open source.
Anyone can download and use Kooboo without a time limit. Public releases contain compiled packages. Controlled source access is available separately to approved partners.
You can run Kooboo on your own computer or server, or use the hosted Kooboo Cloud service.
For a production Linux server, Kooboo can be configured as a system service so that it starts automatically and restarts after a server reboot.
If you do not want to install anything, you can use the hosted Kooboo Cloud service.
Create an account, create a website, and begin building directly in your browser.

Kooboo supports different development styles—from AI-assisted creation to declarative HTML and full server-side scripting.
You can choose the simplest method for each task and combine all three inside the same website.
After starting Kooboo:
<h1>Hello, world!</h1>
<p>This page is running in Kooboo.</p>
You now have a working Kooboo website.
Kooboo Native AI works directly with the website’s Pages, Layouts, Views, content, databases, APIs, scripts, media, configuration, and history.
It can build a website, run it, inspect the result, diagnose problems, make changes, and validate the finished site.
Build → Run → Observe → Diagnose → Modify → Validate → Publish → Improve

Learn more about Kooboo Native AI
Built by AI. Tested by AI. Run by AI. Owned by you.
Kooboo can query structured content and render dynamic pages directly from an HTML template.
The following example loads every item from BlogFolder and displays its title and summary:
<k-data>
<query
as="blogs"
source="content"
resource="BlogFolder"
action="list"
export>
</query>
</k-data>
<div k-for="blog in blogs">
<h2 k-content="blog.title"></h2>
<p k-content="blog.summary"></p>
</div>
There is no separate controller or external template engine to configure. The data query, loop, and content binding are declared directly in the page.
KScript is standard JavaScript with the additional k.* namespace for accessing Kooboo functions.
You can use normal JavaScript syntax, libraries, objects, arrays, and programming patterns. Through the k.* namespace, your code can work directly with Kooboo content, databases, APIs, users, requests, configuration, email, and other platform services.
This example loads blog content using server-side JavaScript:
<script env="server">
var blogs = k.content.BlogFolder.all();
</script>
<div k-for="blog in blogs">
<h2 k-content="blog.title"></h2>
<p k-content="blog.summary"></p>
</div>
JavaScript development is included in the free version of Kooboo cloud. TypeScript development is available in paid Plans.
Kooboo Native AI works inside the website platform rather than operating as a separate chat box.
It can work with Pages, Layouts, Views, content, databases, APIs, ecommerce, scripts, media, configuration, analytics, and website history.
The AI can build the website, run it, inspect the result, diagnose problems, make changes, validate those changes, and continue improving the site.
Build → Run → Observe → Diagnose → Modify → Validate → Publish → Improve
Learn more about Kooboo Native AI
Built by AI. Tested by AI. Run by AI. Owned by you.
Kooboo uses one integrated runtime for domain resolution, routing, data access, server-side rendering, caching, and network delivery.
There is no need to connect and operate a large collection of separate services just to run a dynamic website.
In a published public-Internet pressure test, one Kooboo process hosted:
Read the complete 5,000-site benchmark
The benchmark report includes the hardware, workload, latency distribution, failures, CPU and memory records, request-level data, test client, and reproduction packages.
Do not benchmark the brochure. Download Kooboo and benchmark the product.
The Kooboo portal gives you one place to create, import, organize, edit, and operate websites and applications.
The Kooboo Marketplace provides complete website and application packages—not only visual themes.
A package can include:
Install a package, inspect how it works, customize every part, and continue running it in your own Kooboo environment.

Learn more about the Marketplace
Kooboo combines the tools required to build and operate a complete website or application.
| Native AI Build, inspect, test, repair, and operate real websites with AI. | Performance Run dynamic websites through one optimized, integrated runtime. | Development Build frontend, server-side logic, APIs, and data-driven applications. |
| Inline editor Click an element on the website and edit its content, layout, view, or style. | Marketplace Install complete, editable websites, applications, and tools. | Ecommerce Manage products, customers, carts, orders, discounts, email, and analytics. |
| Multilingual Manage translated content, routes, links, and SEO in one website. | Relation Intelligence See how pages, code, content, routes, and resources are connected. | Email Marketing Create personalized campaigns using your website’s own data and logic. |
| History and Deployment Compare, undo, restore, package, transfer, and publish changes. | Domain and Email Connect domains, HTTPS, DNS, hosting, and email in one environment. | Server-Side Analytics Understand visitors, journeys, bots, resources, performance, and errors. |
Kooboo also includes:
A Kooboo website is not locked inside a remote visual editor.
Pages, code, content, data, media, configuration, and operational history remain part of a portable website project.
You can:
When reporting a problem, include:
Never publish passwords, API keys, private website data, or other confidential information.
Kooboo is free to download and use without a time limit.
Downloading a public release grants use under the applicable Kooboo end-user license. It does not grant access to the Kooboo implementation source or an open-source license.
Third-party and Marketplace items remain subject to their respective licenses and notices.
Approved technology, hosting, infrastructure, integration, and distribution partners may receive controlled source access under separate written agreements and access controls.
This repository is maintained for official compiled releases, checksums, release notes, issue reporting, and release feedback. It is not a public source-code repository.
Copyright © Kooboo. All rights reserved.
High-performance platform for building websites, e-commerce, and web applications—with Native AI, JavaScript development, and a marketplace for portable sites and apps.
341
stars
2,829
commits
Sep 11, 2026
updated
Kooboo is one integrated platform for creating websites, online stores, and business applications.
AI website creation, visual editing, content management, databases, ecommerce, email, analytics, hosting, development, and deployment all work together in one portable system.
Build a real website in minutes. Edit every part. Run it anywhere. Keep control of the result.
Download the latest release · Start with Kooboo Cloud · Documentation · Report an issue

Free to use. Not open source.
Anyone can download and use Kooboo without a time limit. Public releases contain compiled packages. Controlled source access is available separately to approved partners.
You can run Kooboo on your own computer or server, or use the hosted Kooboo Cloud service.
For a production Linux server, Kooboo can be configured as a system service so that it starts automatically and restarts after a server reboot.
If you do not want to install anything, you can use the hosted Kooboo Cloud service.
Create an account, create a website, and begin building directly in your browser.

Kooboo supports different development styles—from AI-assisted creation to declarative HTML and full server-side scripting.
You can choose the simplest method for each task and combine all three inside the same website.
After starting Kooboo:
<h1>Hello, world!</h1>
<p>This page is running in Kooboo.</p>
You now have a working Kooboo website.
Kooboo Native AI works directly with the website’s Pages, Layouts, Views, content, databases, APIs, scripts, media, configuration, and history.
It can build a website, run it, inspect the result, diagnose problems, make changes, and validate the finished site.
Build → Run → Observe → Diagnose → Modify → Validate → Publish → Improve

Learn more about Kooboo Native AI
Built by AI. Tested by AI. Run by AI. Owned by you.
Kooboo can query structured content and render dynamic pages directly from an HTML template.
The following example loads every item from BlogFolder and displays its title and summary:
<k-data>
<query
as="blogs"
source="content"
resource="BlogFolder"
action="list"
export>
</query>
</k-data>
<div k-for="blog in blogs">
<h2 k-content="blog.title"></h2>
<p k-content="blog.summary"></p>
</div>
There is no separate controller or external template engine to configure. The data query, loop, and content binding are declared directly in the page.
KScript is standard JavaScript with the additional k.* namespace for accessing Kooboo functions.
You can use normal JavaScript syntax, libraries, objects, arrays, and programming patterns. Through the k.* namespace, your code can work directly with Kooboo content, databases, APIs, users, requests, configuration, email, and other platform services.
This example loads blog content using server-side JavaScript:
<script env="server">
var blogs = k.content.BlogFolder.all();
</script>
<div k-for="blog in blogs">
<h2 k-content="blog.title"></h2>
<p k-content="blog.summary"></p>
</div>
JavaScript development is included in the free version of Kooboo cloud. TypeScript development is available in paid Plans.
Kooboo Native AI works inside the website platform rather than operating as a separate chat box.
It can work with Pages, Layouts, Views, content, databases, APIs, ecommerce, scripts, media, configuration, analytics, and website history.
The AI can build the website, run it, inspect the result, diagnose problems, make changes, validate those changes, and continue improving the site.
Build → Run → Observe → Diagnose → Modify → Validate → Publish → Improve
Learn more about Kooboo Native AI
Built by AI. Tested by AI. Run by AI. Owned by you.
Kooboo uses one integrated runtime for domain resolution, routing, data access, server-side rendering, caching, and network delivery.
There is no need to connect and operate a large collection of separate services just to run a dynamic website.
In a published public-Internet pressure test, one Kooboo process hosted:
Read the complete 5,000-site benchmark
The benchmark report includes the hardware, workload, latency distribution, failures, CPU and memory records, request-level data, test client, and reproduction packages.
Do not benchmark the brochure. Download Kooboo and benchmark the product.
The Kooboo portal gives you one place to create, import, organize, edit, and operate websites and applications.
The Kooboo Marketplace provides complete website and application packages—not only visual themes.
A package can include:
Install a package, inspect how it works, customize every part, and continue running it in your own Kooboo environment.

Learn more about the Marketplace
Kooboo combines the tools required to build and operate a complete website or application.
| Native AI Build, inspect, test, repair, and operate real websites with AI. | Performance Run dynamic websites through one optimized, integrated runtime. | Development Build frontend, server-side logic, APIs, and data-driven applications. |
| Inline editor Click an element on the website and edit its content, layout, view, or style. | Marketplace Install complete, editable websites, applications, and tools. | Ecommerce Manage products, customers, carts, orders, discounts, email, and analytics. |
| Multilingual Manage translated content, routes, links, and SEO in one website. | Relation Intelligence See how pages, code, content, routes, and resources are connected. | Email Marketing Create personalized campaigns using your website’s own data and logic. |
| History and Deployment Compare, undo, restore, package, transfer, and publish changes. | Domain and Email Connect domains, HTTPS, DNS, hosting, and email in one environment. | Server-Side Analytics Understand visitors, journeys, bots, resources, performance, and errors. |
Kooboo also includes:
A Kooboo website is not locked inside a remote visual editor.
Pages, code, content, data, media, configuration, and operational history remain part of a portable website project.
You can:
When reporting a problem, include:
Never publish passwords, API keys, private website data, or other confidential information.
Kooboo is free to download and use without a time limit.
Downloading a public release grants use under the applicable Kooboo end-user license. It does not grant access to the Kooboo implementation source or an open-source license.
Third-party and Marketplace items remain subject to their respective licenses and notices.
Approved technology, hosting, infrastructure, integration, and distribution partners may receive controlled source access under separate written agreements and access controls.
This repository is maintained for official compiled releases, checksums, release notes, issue reporting, and release feedback. It is not a public source-code repository.
Copyright © Kooboo. All rights reserved.