-
|
I am trying to run Is this the correct approach? Should I be running from the root project directory? This error also leads me to wonder how one would create their own server. Do we just have something like what's within the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Hi @gee4vee ,
We are using
If you want to create your own server you would have to implement a package similar to the We have started working on the node based glsp-server pretty recently which means there is no official release yet. If you wan to create your own server you can to use the // from
{
...
"dependencies": {
"@eclipse-glsp/server-node": "0.9.0",
"@eclipse-glsp/layout-elk": "0.9.0"
},
}
// to
{
...
"dependencies": {
"@eclipse-glsp/server-node": "next", // or a concrete next version e.g. `0.9.0-next.95961ba.7`
"@eclipse-glsp/layout-elk": "next"
},
} |
Beta Was this translation helpful? Give feedback.
Hi @gee4vee ,
We are using
yarnas package manager. Sonpm installprobably wont work.You can build all packages by executing
yarnin the package root.If you just want to build the example server you can execute
yarn buildfrom withinglsp-server-node/examples/workflow-server.If you want to create your own server you would have to implement a package similar to the
exa…