Skip to content

Extending WebIDE Frontend overview

Candy Zheng edited this page Jul 20, 2017 · 2 revisions

Extending Coding-WebIDE-Frontend

Getting Started

To build your own app on top of the Start Kit or the current plugins such as Webide-plugin-Env

Setup your project

  1. clone .... a plugin or yo
  2. clone the WebIde project

Development workflow

After you have set up the project using above instructions, you can use your favorite IDE or text editor to write code, and run the application from the command line.

To learn how to structure your application and use the our application architecture, read the our Architecture guide for more details.

install all the dependency use yarn (we recommend)

yarn

set env for plugin development

  • in your plugin project just run yarn dev or PORT=xxx yarn devfor special port,default is 4000

  • in coding/WebIDE project you should add PACKAGE_DEV = true and change PACKAGE_SERVER to the development server generated by plugin yarn dev you can aslo set cookies for key PACKAGE_DEV or PACKAGE_SERVER in run time.

lifecycle

APIs

Clone this wiki locally