1
0
mirror of https://github.com/taigrr/nats.docs synced 2025-01-18 04:03:23 -08:00

Added intro to developer doc with links to javadoc/godoc/etc...

This commit is contained in:
Stephen Asbury 2019-05-16 14:18:32 -07:00
parent 127ea2ad63
commit 312697bfa4
2 changed files with 14 additions and 0 deletions

View File

@ -45,6 +45,8 @@
## Developing With NATS
* [Intro](developer/README.md)
* [Concepts](developer/concepts/intro.md)
* [Subject-Based Messaging](developer/concepts/subjects.md)
* [Publish-Subscribe](developer/concepts/pubsub.md)

12
developer/README.md Normal file
View File

@ -0,0 +1,12 @@
# Developing with NATS
Developing with NATS is a combination of distributed application techniques, common NATS features and library specific syntax. As well as using this book for guidance, some of the libraries contain language-familiar formats of their API. For example, the go library has go doc, and the Java library has javadoc.
| Library | Doc Link |
| ------------- | ------------- |
| [nats.go](https://github.com/nats-io/nats.go) | [godoc](http://godoc.org/github.com/nats-io/nats.go) |
| [nats.java](https://github.com/nats-io/nats.java) | [javadoc](https://javadoc.io/doc/io.nats/jnats) |
| [nats.net](https://github.com/nats-io/nats.net) | [doxygen](http://nats-io.github.io/nats.net/) |
| [nats.rb](https://github.com/nats-io/nats.rb) | [yard](https://www.rubydoc.info/gems/nats) |
Not all libraries contain this separate doc, depending on the language community, but be sure to check out the client libraries README for more information.