Home > Web Front-end > JS Tutorial > body text

Clone Any Website and Edit Anything in Just inute

PHPz
Release: 2024-07-26 17:47:40
Original
677 people have browsed it

I have developed a super powerful tool for website, e-commerce, and application development. In my opinion, it is so so much better than WordPress. I am looking forward to hearing feedback from the community.

This is the first in a series of articles introducing this tool

Getting Started

Download from github or our website and click to run,

https://www.github.com/kooboo/kooboo

https://www.kooboo.com/downloads

No installation needed, register an account and login.

Clone Any Website and Edit Anything in Just inute

Clone any website and editing anything directly

Click "New site" on above screen, and enter any URL

Clone Any Website and Edit Anything in Just inute

Click "Start Clone"

Clone Any Website and Edit Anything in Just inute

In just 1 or 2 minutes, you can create an exact clone of the original website and have the ability to edit anything directly.

Kooboo site ready

Inline Editing

Kooboo allows you to inline edit anything, whether it is static or dynamic content, text, images, or stylesheets.

To use this feature, go to "Administration" as shown in the screenshot above, click on "Page" in the left menu, select a page, and then click "Inline edit."

Clone Any Website and Edit Anything in Just inute

You are now at inline edit mode that allows you to click anywhere and change anything directly.

Clone Any Website and Edit Anything in Just inute

Source Code IDE Editing

The Kooboo development mode grants you access to a full functional web IDE for development, debugging and deployment.

Kooboo development mode

It contains a template engine fully compatible with VueJs Syntax, and allow you to run JavaScript in the server side by env=server tag;

Below sample code read content list from database and display them as a list.

<script env="server">
    var services=k.content.service.all()
</script>
<div env="server" v-for="service in services">
    <span>{{service.title}}</span>
</div>

Copy after login

Dom Tree Editing

Kooboo allow you to edit the entire website like a single Dom Tree. Changes will be updated to multiple pages with the same Dom structure.

Clone Any Website and Edit Anything in Just inute

The above is the detailed content of Clone Any Website and Edit Anything in Just inute. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template