Four systems. One framework. Zero lock-in.

Jx Suite replaces the CMS, the build tool, the page builder, and the framework — with plain files in a git repository.

File-based content management.

Your content lives as JSON documents and Markdown files in a git repository. No database to manage, no admin panel to secure, no migration scripts to run. Branch, review, merge — the same workflow you use for code.

my-site/ ├── pages/ │ ├── index.md │ ├── about.json │ └── blog/ │ └── [slug].json ├── content/ │ └── posts/ │ ├── hello-world.md │ └── launch-day.md ├── components/ │ ├── hero.json │ └── card.json ├── layouts/ │ └── base.json └── project.json
{ "tagName": "like-button", "state": { "count": 0, "liked": false, "toggle": { "$prototype": "Function", "body": "state.liked = !state.liked; state.count += state.liked ? 1 : -1" } }, "children": [ { "tagName": "button", "onclick": { "$ref": "#/state/toggle" }, "textContent": "♡ undefined" } ] }

Reactive without the runtime tax.

Declare state, bind it to the DOM with template strings, and let the compiler figure out the rest. Static by default — reactive islands hydrate only where you need interactivity.

Design visually. Save as plain files.

Jx Studio is a visual IDE that runs in your browser. Design on a canvas, edit content inline, write event handlers — everything saves to the same JSON files your compiler reads. No proprietary format. No export step.

[ Jx Studio Screenshot ]
$ jx build ✓ Compiled 47 pages ✓ Optimized 23 images (webp, avif) ✓ Generated sitemap.xml ✓ Output: ./dist (312kb total) Done in 0.8s $ deploy ./dist # Any static host works

Compiles to HTML. Deploys anywhere.

The build step produces pure HTML and CSS — no origin server, no serverless functions, no database connections. Static files on a CDN. Fast everywhere. Costs pennies. Online forever.

From brochure sites to interactive applications.

Marketing sites
Documentation
Blogs & portfolios
E-commerce catalogs
Interactive dashboards
Multi-language sites
Calculators & tools
Landing pages
Component libraries

Ready to build?

Start your first project in under a minute. No accounts. No credit card. Just code.