最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Web IDE tool - Stack Overflow

programmeradmin4浏览0评论

Does anyone know if it exists a Web IDE allowing to develop web application directly from a web application? The W3School website allows to write small piece of code in HTML or javascript but is there another solution more project oriented?

Does anyone know if it exists a Web IDE allowing to develop web application directly from a web application? The W3School website allows to write small piece of code in HTML or javascript but is there another solution more project oriented?

Share Improve this question asked Jun 6, 2009 at 12:10 Martin DelilleMartin Delille 11.8k16 gold badges69 silver badges138 bronze badges
Add a ment  | 

6 Answers 6

Reset to default 5

CodeRun

http://www.coderun./


Bespin from Mozilla Labs

http://labs.mozilla./projects/bespin/

Bespin is a Mozilla Labs experiment that proposes an open, extensible web-based framework for code editing that aims to increase developer productivity, enable pelling user experiences, and promote the use of open standards.

Web2py is a python web-app framework where you can develop applications directly from within the browser

clicpilot builder is an online dev tool you can use to build WebApp just in browser. And it can generate NodeJS/JSP code and JQuery/Bootstrap Front-End code for you. it also support testing.

http://htmledit.squarefree./

Well, it is easy to build an HTML editor. Here is my quick sample on phpe:

<form method="post">
<textarea id="editor" name="editor" style="width:100%;height:200px;"></textarea>
<input type="submit" id="btnSubmit" name="btnSubmit" />
</form>
<hr />
<?php
    if (isset($_REQUEST["btnSubmit"])) {
        echo $_REQUEST["editor"];
    }
?>

Well, beware of attacks!

Do not forget good old Zope, providing through-the-web development for many years (Parts of Zope have been open source as far back as 1996, with the whole application server open source since 1998).

What is Zope?

Zope is an open source web application server primarily written in the Python programming language. It features a transactional object database which can store not only content and custom data, but also dynamic HTML templates, scripts, a search engine, and relational database (RDBMS) connections and code. It features a strong through-the-web development model, allowing you to update your web site from anywhere in the world. To allow for this, Zope also features a tightly integrated security model. Built around the concept of "safe delegation of control", Zope's security architecture also allows you to turn control over parts of a web site to other organizations or individuals.

You can use Koding. It has all the stuff you need if you're a beginner and above all this you can collaborate with others and share your code.

发布评论

评论列表(0)

  1. 暂无评论