go-fed-activity/README.md

83 lines
3.7 KiB
Markdown
Raw Normal View History

2018-01-24 04:30:59 +05:30
# activity
`go get github.com/go-fed/activity`
2018-05-31 03:18:34 +05:30
This repository supports `vgo` and is remotely verifiable.
2018-01-24 04:30:59 +05:30
This repository contains three libraries for use in your golang applications:
2018-05-31 03:18:34 +05:30
* `vocab`: An ActivityStreams Vocabulary library
* `streams`: A convenience library for the ActivityStreams Vocabulary
* `pub`: ActivityPub SocialAPI (Client-to-Server) and FederateAPI
(Server-to-Server)
2018-01-24 04:30:59 +05:30
This library is biased. It forgoes understanding JSON-LD in exchange for static
typing. It provides a large amount of default behavior to let Social,
Federated, or both kinds of ActivityPub applications just work.
2018-01-24 04:30:59 +05:30
## Status
**0.2.0** ([Semantic Versioning](https://semver.org/))
There is no official implementation report available... yet!
[Unofficial implementation reports are available in issue #46](https://github.com/go-fed/activity/issues/46).
Please see CHANGELOG for changes between versions.
## Getting Started
2018-05-31 03:18:34 +05:30
See each subdirectory for its own README for further elaboration. The
recommended reading order is `vocab`, `streams`, and then `pub`. Others are
optional.
## How can I get help, file issues, or contribute?
Please see the CONTRIBUTING.md file!
2018-05-31 03:18:34 +05:30
## How well tested are these libraries?
2018-05-31 03:18:34 +05:30
I took great care to add numerous tests using examples directly from
specifications, official test repositories, and my own end-to-end tests.
2018-05-31 03:18:34 +05:30
## Who is using this library currently?
| Application | Description | Repository | Point Of Contact | Homepage |
|:-----------:|:-------------------------------------------------:|:--------------------------------------------------------------------------:|:-------------------------------------------------------------------------------------------------------------------:|:------------------------------------:|
| Anancus | Self-hosted and federated social link aggregation | [https://gitlab.com/tuxether/anancus](https://gitlab.com/tuxether/anancus) | [@tuxether@floss.social](https://floss.social/@tuxether) or [tuxether@protonmail.ch](mailto:tuxether@protonmail.ch) | N/A |
| Write.as | Simple, privacy-focused blogging platform | [https://github.com/writeas/Write.as](https://github.com/writeas/Write.as) | [@write_as@writing.exchange](https://writing.exchange/@write_as) or [hello@write.as](mailto:hello@write.as) | [https://write.as](https://write.as) |
2018-05-31 03:18:34 +05:30
## How do I use these libraries?
There is a [tutorial](https://go-fed.org/tutorial) available at
[https://go-fed.org](https://go-fed.org).
2018-05-31 03:18:34 +05:30
Please see each subdirectory for its own README for further elaboration. The
recommended reading order is `vocab`, `streams`, and then `pub`. Others are
optional.
2018-05-31 03:18:34 +05:30
Passing familiarity with ActivityStreams and ActivityPub is recommended.
## Other Libraries
* `tools` - Code generation wizardry and ActivityPub-spec-as-data.
* `deliverer` - Provides an asynchronous `Deliverer` for use with the `pub` lib
## FAQ
Please see the CONTRIBUTING.md file!
2018-01-24 04:30:59 +05:30
## Useful References
* [ActivityPub Specification](https://www.w3.org/TR/activitypub)
* [ActivityPub GitHub Repo](https://github.com/w3c/activitypub)
* [ActivityStreams Core Specification](https://www.w3.org/TR/activitystreams-core)
* [ActivityStreams Vocabulary Specification](https://www.w3.org/TR/activitystreams-vocabulary)
* [ActivityStreams GitHub Repo](https://github.com/w3c/activitystreams)
## Thanks
I would like to thank those that have worked hard to create the technologies
and standards that created the opportunity to implement this suite of
libraries.