Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eclipse-sprotty/sprotty-server
Server implementation for the Sprotty diagramming framework
https://github.com/eclipse-sprotty/sprotty-server
diagrams eclipse java server
Last synced: 3 months ago
JSON representation
Server implementation for the Sprotty diagramming framework
- Host: GitHub
- URL: https://github.com/eclipse-sprotty/sprotty-server
- Owner: eclipse-sprotty
- License: epl-2.0
- Created: 2018-08-16T09:16:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-29T13:06:51.000Z (12 months ago)
- Last Synced: 2024-05-06T15:23:26.596Z (9 months ago)
- Topics: diagrams, eclipse, java, server
- Language: Xtend
- Homepage: https://eclipse.org/sprotty
- Size: 453 KB
- Stars: 22
- Watchers: 10
- Forks: 18
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-starred - eclipse-sprotty/sprotty-server - Server implementation for the Sprotty diagramming framework (server)
README
# sprotty-server
Libraries to build [Sprotty diagram](https://github.com/eclipse/sprotty) servers in Java/Xtend.The version history is documented in the [CHANGELOG](https://github.com/eclipse/sprotty-server/blob/master/CHANGELOG.md).
## Structure
- `org.eclipse.sprotty`: Java bindings for the Sprotty API.
- `org.eclipse.sprotty.layout`: Server-based layout using the [Eclipse Layout Kernel](https://www.eclipse.org/elk/) framework
- `org.eclipse.sprotty.server`: Base library for standalone Sprotty servers.
- `org.eclipse.sprotty.xtext`: Glue code to integrate Sprotty diagrams with Xtext-based Language Servers. Enhances
the LSP to communicate Sprotty Actions. Allows fully synchronized diagrams on language artifacts.## Build
```bash
./gradlew build
```The project is built on [jenkins.eclipse.org/sprotty](https://jenkins.eclipse.org/sprotty/).
Pre-build Maven artifacts are available from [Sonatype OSS](https://oss.sonatype.org/content/repositories/snapshots/org/eclipse/sprotty/).
## See also
- [sprotty](https://github.com/eclipse/sprotty) the client part of the Sprotty framework.
- [sprotty-theia](https://github.com/eclipse/sprotty-theia) integrate Sprotty diagrams in extensions to the [Theia IDE](https://theia-ide.org)## References
- [DSL in the Cloud example](http://github.com/TypeFox/theia-xtext-sprotty-example) an example using Xtext, Theia and Sprotty to create a DSL workbench in the cloud.
- [yangster](http://github.com/theia-ide/yangster) a Theia extension for the YANG language.