View your genealogy data using an interactive chart.
Website: https://pewu.github.io/topola-viewer
Here is an example from the Web:
If you have data in a genealogy database, you can export your data in GEDCOM format and load it using the "Load from file" menu.
Topola Genealogy Viewer is being integrated into more and more Web and desktop applications. Here are the current integrations:
To view your Gramps data in Topola Genealogy Viewer, install Interactive Family Tree plugin from the Gramps plugin manager. The plugin will add a Tools->Analysis and Exploration->Interactive Family Tree menu item to Gramps.
Source code: https://github.com/gramps-project/addons-source/tree/master/Topola
Embed Topola Genealogy Viewer in your Webtrees installation with the Topola interactive tree addon.
Source code: https://github.com/PeWu/topola-webtrees
You can browse the WikiTree genealogy tree using Topola Genealogy Viewer. On a WikiTree profile page go to the Family Tree & Tools tab and click the Dynamic Tree by Topola link.
Example: Stephen Hawking
Topola Genealogy Viewer is hosted on apps.wikitree.com to benefit from the ability of being logged in to the WikiTree API.
npm install
npm start
You can host Topola Genealogy Viewer on your own server. There are no specific requirements for the hosting server. There is no code that is executed on the server side. The server only hosts the application files and whole application runs in the browser.
You can build Topola Genealogy Viewer from source code or take a ready-to-deploy package.
Here are the commands to build the application:
git clone https://github.com/PeWu/topola-viewer.git
cd topola-viewer
npm install
npm run build
Now, take the contents of the build/
folder and host it on your own server.
Download the following file, unpack it and upload the contents to your server: https://github.com/PeWu/topola-viewer/archive/refs/heads/gh-pages.zip
These are the exact files that are hosted on GitHub pages.
You can run Topola Viewer in a "single tree mode" that displays only the GEDCOM you specify. Specify the URL to a GEDCOM file in the REACT_APP_STATIC_URL
environment variable when building and running the application.
Run locally with the specified data URL:
REACT_APP_STATIC_URL=https://example.org/sample.ged npm start
Build with the specified data URL:
REACT_APP_STATIC_URL=https://example.org/sample.ged npm run build
The build/
folder will contain files that can be hosted on a Web server.
The topola-webpack tool can build a Topola Genealogy Viewer package bundled together with a GEDCOM file.
handleCors
Add &handleCors=false
to the URL to avoid using the CORS proxy
embedded
Add &embedded=true
to the URL. This option removes the options to open a different file. It is an option that was intended to be used when Topola Genealogy Viewer is in an iframe.