## 2019-06-26

server side graphviz

```js
fetch("https://lively-kernel.org/lively4S2/_graphviz/", {
  method: "POST",
  headers: {
    graphtype: "svg",
    graphlayout: "neato"
  },
  body: `digraph {
      a -> b;
      b -> c;
      c -> a;
  }`
}).then(r => r.text()).then( source => {
  that.innerHTML = source
})
```

![](home_4000elements_server.png)



but there is lots to do...

![](home_4000_details.png)

without CreativeWorks

![](home_without_creative_works.png)