https://github.com/ncsoft/wamp-scala
Implementation of WAMP in Scala
https://github.com/ncsoft/wamp-scala
Last synced: 11 months ago
JSON representation
Implementation of WAMP in Scala
- Host: GitHub
- URL: https://github.com/ncsoft/wamp-scala
- Owner: ncsoft
- License: other
- Created: 2016-02-05T02:14:55.000Z (over 10 years ago)
- Default Branch: develop
- Last Pushed: 2017-08-16T08:27:04.000Z (almost 9 years ago)
- Last Synced: 2025-05-05T09:35:37.739Z (about 1 year ago)
- Language: Scala
- Size: 34.2 KB
- Stars: 7
- Watchers: 9
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WAMP?
[WAMP](http://wamp-proto.org/)(Web Application Messaging Protocol) is a protocol that provides most of messaging features.
Compared to other protocols such as [XMPP](https://en.wikipedia.org/wiki/XMPP), WAMP is concise and straightforward to understand and implement.
# wamp-scala?
wamp-scala is an implementation of [wamp](http://wamp-proto.org/) in Scala.
# Restrictions
wamp-scala does not handle web socket connections yet.
# For Contributors
## Development Environment
* Language: Scala(2.11)
* Framework: [Akka](http://akka.io)(2.4.1)
* Build: [sbt](http://www.scala-sbt.org/)(0.13.8)
## Package
```bash
> ./sbt package packageSrc
```
## Test
```bash
> ./sbt test
```