Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.87 KB

File metadata and controls

38 lines (33 loc) · 1.87 KB

Kevoree for the impatient

You want to see something running fast...ok

  1. Go to : http://runjs.kevoree.org runjs.kevoree.org
  2. Fill your name and click on start, you will automatically join a public group (!no security) runjs2
  3. Open a tab on: http://editor.kevoree.org/ and load the current model (File > Open from node > RunJS Shared Group > Pull Model) editorRunJS
  4. Merge a default library through Model > Kevoree Standard Library > JavaScript > fakeconsole > merge jsmerge
  5. Drag and drop an HelloWorldComponent on your node (or the one of your neightbour...)
  6. Clic on server-node and on push push2
  7. You should see a new component in you log hello

You want to develop your own component, here is a short tutorial to install a developement environement

  1. Install JDK8: https://jdk8.java.net/
  2. Install IntelliJ IDE : http://www.jetbrains.com/idea/download/
  3. Install Kevoree Plugin in IntelliJ (Preferences > Plugins > Browser repositories > Kevoree > Install)
  4. Create an Empty Kevoree Project (File > New Project > Kevoree > ok) firstScreen
  5. Eventually refresh maven project if necessary refresh
  6. Ok you should see a demo component HelloWorld.java draft and a demo of KevScript (main.kevs)
  7. Right and run it runOne
  8. Open Kevoree editor : http://editor.kevoree.org and load the current model (File > Open from node and leave everything by default) weditor
  9. Now add another HelloWord component using drag and drop and push the new model push
  10. You sould see a message saying that your component has been pushed.

Now feel free to modify the hello world, to connect it to several using default library of channels and so on...