WebIO Environment

]up; add WebIO Interact WebSockets JSCall CSSUtil
using WebSockets, WebIO, Interact, JSCall
@manipulate for i in 1:10
  node(:div, node(:h1 , "Hello number: $i"))
end
using Colors
@manipulate for r = 0:.05:1, g = 0:.05:1, b = 0:.05:1
    HTML(string("<div style='color:#", hex(RGB(r,g,b)), "'>Color me</div>"))
end