nhemsley / cloud9

Cloud9 IDE - by javascripter for javascripters - Powered by Ajax.org

Home Page:www.cloud9ide.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cloud9 IDE

The Cloud9 IDE is an open source project started by Fabian Jakobs (fjakobs), Ruben Daniels (javruben), Mike de Boer (mikedeboer) and Rik Arends ([rikarends]) from ajax.org, built on top of Node.JS.

This Integrated Development Environment aims to bring all great features from other existing IDE's and source code editors like Eclipse, Netbeans, Textmate, and many others together, bundled as plugins. Cloud9's main focus is on Javascript development, it is able to set a new standard for client and server development integration.

And if you find that functionality is missing? Just write a plugin and patch it yourself!

Written in Javascript, for Javascripters.

Features

  • High performance text editor with bundled syntax highlighting support for JS, HTML, CSS and mixed modes.
  • Integrated debugger for Node.JS applications which can started, paused and stopped from within the IDE
  • Integrated debugger for the Google Chrome browser which can started, paused and stopped from within the IDE
  • Local filesystem is exposed through WebDAV to the IDE, which makes it possible to connect to remote workspaces as well
  • Highly extensible through the plugin system
  • Bundled plugins: browser, clipboard, code (editor), console, debugger, docs, editors, filesystem, html, keybindings, newresource, noderunner, panels, refactor, richtext, save, searchreplace, settings, tree, undo

Browser Support

We are developing on firefox and chrome and this is a development repo, other browsers might be less stable until a proper release.

Usage

After a Git checkout of the project or download (see Installation section), the command you need to run the IDE locally is the following:

To start cloud9 and install all submodules you can use the quickstart options for your platform on the console or from your explorer/finder and opens it in your default browser:

Linux and OSX:

$ bin/cloud9.sh

Windows:

> bin\cloud9-win32.bat

Note you'll need a git version 1.7 or higher to use the stock shell script provided.

If you want to start it manually try:

$ node bin/cloud9.js

This runs the IDE with itself set as the workspace. When you open the url

http://localhost:3000

in your browser, it will show the directory structure of the current workspace in a tree. Since none is provided by the startup command above, it will show the IDE directory contents as a default workspace.

You can specify your own workspace as follows:

$ node bin/cloud9.js -w /path/to/your/awesome/workspace

And as a result the tree will display the contents of that directory.

You can specify the ip cloud9 is listening to using:

$ node bin/cloud9.js -l 192.168.2.1

Or specify to listen to all ip's

$ node bin/cloud9.js -l all

To see more usage information and additional command line options use.

$ node bin/cloud9.js -h

Installation

Via git (or downloaded tarball):

$ git clone git://github.com/ajaxorg/cloud9.git

Via npm:

$ npm install cloud9

Startup errors: Binaries and node.js

Starting Cloud9 using cloud9.sh or .bat uses nodejs and node-o3-xml binaries that are distributed with Cloud9. We have included binaries for OSX 64 bit Intel (10.5/10.6), 32 and 64 bit Ubuntu and Windows 32 bit. All binaries are based on node 0.2.x latest stable. If you get an error about unable to load o3-xml or an architecture error, you will need to compile nodejs and node-o3-xml yourself and put it in the right directory of cloud9. For information how to compile node, please check www.nodejs.org. You will need to compile and install nodejs before you can compile node-o3-xml.

$ git clone http://github.com/ajaxorg/o3
$ cd o3
$ ./tools/node_modules_build
$ cp build/default/o3.node cloud9dir/support/jsdav/support/node-o3-xml/lib/o3-xml/

after this you can start cloud9 manually using node bin/cloud9.js

Documentation

Documentation is in the making.

Open Source Projects Used

The Cloud9 IDE couldn't be this cool if it weren't for the wildly productive Node.JS community producing so many high quality software. Main projects that we use as building blocks:

Thanks to all developers and contributors of these projects!

License

The GPL version 3, read it at http://www.gnu.org/licenses/gpl.txt

About

Cloud9 IDE - by javascripter for javascripters - Powered by Ajax.org

www.cloud9ide.com

License:GNU General Public License v3.0