93
A web app to easily transfer your user data from one Lemmy instance to another
(stablenarwhal.github.io)
A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, KBin, etc).
If you wanted to get help with moderating your own community then head over to [email protected]!
Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration), Search Lemmy
Could this work offline as a PWA? By offline I mean not hosted on your server, but locally.
Sure, the code is completely client-side, simply clone it. If you're running into CORS problems due to the file:// scheme Origin of opening a local file, simply host it as a local temporary server with something like
python -m http.server
.This is due to the two ways most instances validate Cross-Origin requests:
file://
URLs will result in anull
orfile://
Origin which can't be authorized via the second option, therefore the need to sometimes host the application via (local) webserver.