8
votes

I have been looking for a GEDCOM parser in JavaScript. Does one exist at the moment? I have found them in many languages but not in JavaScript yet.

1
GEDCOM parsers are fairly simple to write. I've done a few over the years, including one in Javascript. The basic approach is to create an object for each individual, then add properties to that object for the various data, such a DOB etc. If you are adding something that has its own sub keys, then you can nest objects. - Jeremy J Starcher

1 Answers