Home > Article > Web Front-end > Clone Any Website and Edit Anything in Just inute
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
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.
Click "New site" on above screen, and enter any URL
Click "Start Clone"
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 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."
You are now at inline edit mode that allows you to click anywhere and change anything directly.
The Kooboo development mode grants you access to a full functional web IDE for development, debugging and deployment.
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>
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.
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!