Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jvns/manage-boosts
manage mastodon boosts
https://github.com/jvns/manage-boosts
Last synced: 21 days ago
JSON representation
manage mastodon boosts
- Host: GitHub
- URL: https://github.com/jvns/manage-boosts
- Owner: jvns
- License: mit
- Created: 2022-12-27T03:06:55.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-22T03:14:54.000Z (over 1 year ago)
- Last Synced: 2024-04-15T03:01:32.888Z (7 months ago)
- Language: JavaScript
- Size: 488 KB
- Stars: 28
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# manage Mastodon boosts
The website is here: https://manage-boosts.jvns.ca
### no server
This is a static site: there's no server, all your data is stored only in your
browser, as soon as you clear your cache it's all gone.I've tested it with mastodon.social, it may or may not work with other Mastodon instances.
### this code is unmaintained
I made this library just for me to use, it's fulfilled its purpose for me, and
I'm not planning to take feature requests or fix bugs. I would genuinely love
to hear about problems (and I might even fix them! who knows!) but I want to be
clear that there's a high probability that I will not respond :)It's MIT licensed so you can use it however you want.
### how to develop it
To develop this locally, run:
```
python3 -m http.server 8081
```Then open http://localhost:8081 in your browser.
### contains a tiny Mastodon library
This contains a tiny Mastodon library called `mastodon.js` for logging in with
OAuth and making requests. You can see some examples of how to use it in
`mastodon-login-example.html` in this repository, or in `script.js`.I also probably won't be fixing bugs or taking feature requests for that library.