import { Classes, Code, H1, H2, H4 } from "@blueprintjs/core"; import * as React from "react"; import styled from "styled-components"; // import appsignalLogo from "../../assets/appsignal.svg"; import * as gitlabLogo from "../../assets/gitlab.png"; import * as nlnetLogo from "../../assets/nlnet.png"; import { Page } from "../atoms"; const SponsorContainer = styled.div` margin-bottom: 20px; `; const Sponsor = styled.div` margin: 10px; display: inline-block; `; const AboutScreen: React.FC = () => (

About

fediverse.space is a tool to visualize networks and communities on the{" "} fediverse . It works by crawling every instance it can find and aggregating statistics on communication between these.

You can follow the project on{" "} Mastodon .


FAQ

Why can't I see details about my instance?

fediverse.space only supports servers using the Mastodon API, the Misskey API, the GNU Social API, or Nodeinfo. Instances with 10 or fewer users won't be crawled -- it's a tool for understanding communities, not individuals.

When is $OTHER_FEDIVERSE_SERVER going to be added?

Check out{" "} this GitLab issue .

How do I add my personal instance?

Click on the Administration link in the top right to opt-in.

How do you calculate the strength of relationships between instances?

fediverse.space looks at public statuses from within the last month on the public timeline of each instance. It calculates at the ratio of mentions of an instance / total statuses. It uses a ratio rather than an absolute number of mentions to reflect that smaller instances can play a large role in a community.


Special thanks

NLnet logo
{/* Appsignal logo */} GitLab logo

Inspiration for this site comes from several places:

The source code for fediverse.space is available on{" "} GitLab ; issues and pull requests are welcome!

); export default AboutScreen;