An open API service indexing awesome lists of open source software.

https://github.com/thoughtsunificator/gedcom-parser-deno

Tiny GEDCOM parser
https://github.com/thoughtsunificator/gedcom-parser-deno

deno gedcom gedcom-parser javascript parser

Last synced: 4 months ago
JSON representation

Tiny GEDCOM parser

Awesome Lists containing this project

README

          

# gedcom-parser

Tiny GEDCOM parser.

## Getting Started

### Usage

````javascript
import { Parser } from 'https://deno.land/x/gedcom_parser/index.js'

const records = Parser.parse(`0 HEAD
1 GEDC
2 VERS 5.5.5
2 FORM LINEAGE-LINKED
3 VERS 5.5.5
1 CHAR UTF-8
1 SOUR gedcom.org
2 NAME The GEDCOM Site
2 VERS 5.5.5
2 CORP gedcom.org
3 ADDR
4 CITY LEIDEN
3 WWW www.gedcom.org
1 DATE 2 Oct 2019
2 TIME 0:00:00
1 FILE REMARR.GED
1 LANG English
1 SUBM @U1@
`)

````