Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timmarinin/webmention
CLI tool for sending and receiving Webmentions
https://github.com/timmarinin/webmention
indieweb webmention
Last synced: 1 day ago
JSON representation
CLI tool for sending and receiving Webmentions
- Host: GitHub
- URL: https://github.com/timmarinin/webmention
- Owner: timmarinin
- Created: 2021-04-24T17:53:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T12:42:27.000Z (3 months ago)
- Last Synced: 2024-10-13T15:50:22.834Z (about 1 month ago)
- Topics: indieweb, webmention
- Language: Rust
- Homepage:
- Size: 144 KB
- Stars: 19
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# webmention
This crate helps deal with [Webmentions](https://www.w3.org/TR/webmention/): sending, receiving, checking the validity.
## Installation
If you have `cargo` installed, then you can easily get webmention by running
```
cargo install webmention --bin webmention --features="cli"
```Or (if you want receiving functionality):
```
cargo install webmention --bin webmention --features="cli receive"
```## CLI Usage
Send a webmention:
```
webmention send --from my_url --to other_url
```Try to send webmentions for all linked URLs:
```
webmention send --from my_url
```Start a receiver server:
```
webmention receive --domain my_domain
```## Use cases
1. CLI tool for sending webmentions from your posts manually (endpoint-discovery, sending)
2. Simple web server for receiving webmentions (receiving, storage, validating, querying)
3. Infrastructure for embedding webmention endpoint into a larger web server (receiving, storage)## License
This project is dually licensed under [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html) and [MIT license](https://opensource.org/licenses/MIT) and maintained by [marinintim.com](https://marinintim.com).