Martin Delille
Martin Delille

Reputation: 11810

Web IDE tool

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?

Upvotes: 5

Views: 1320

Answers (6)

Clic Pilot
Clic Pilot

Reputation: 11

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.

Upvotes: 1

stefanbc
stefanbc

Reputation: 779

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.

Upvotes: 0

gimel
gimel

Reputation: 86492

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.

Upvotes: 0

MicTech
MicTech

Reputation: 45123

CodeRun

http://www.coderun.com/


Bespin from Mozilla Labs

http://labs.mozilla.com/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 compelling user experiences, and promote the use of open standards.

Upvotes: 5

NinethSense
NinethSense

Reputation: 9028

http://htmledit.squarefree.com/

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!

Upvotes: 0

Matt
Matt

Reputation: 2902

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

Upvotes: 2

Related Questions