https://github.com/rootsdev/gedcomx-fs-js
JavaScript library for FamilySearch extensions to the GEDCOM X spec.
https://github.com/rootsdev/gedcomx-fs-js
familysearch gedcomx genealogy
Last synced: 4 months ago
JSON representation
JavaScript library for FamilySearch extensions to the GEDCOM X spec.
- Host: GitHub
- URL: https://github.com/rootsdev/gedcomx-fs-js
- Owner: rootsdev
- License: mit
- Created: 2016-10-14T17:38:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-17T16:37:22.000Z (over 9 years ago)
- Last Synced: 2025-09-23T01:52:39.083Z (9 months ago)
- Topics: familysearch, gedcomx, genealogy
- Language: JavaScript
- Homepage: http://rootsdev.org/gedcomx-fs-js/
- Size: 818 KB
- Stars: 3
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gedcomx-fs-js
[](https://www.npmjs.com/package/gedcomx-fs-js)
[](https://travis-ci.org/rootsdev/gedcomx-fs-js)
[](https://codecov.io/gh/rootsdev/gedcomx-fs-js)
JavaScript library for FamilySearch extensions to the GEDCOM X spec. Designed to
be used with [gedcomx-js](https://github.com/rootsdev/gedcomx-js).
## Install
First install [gedcomx-js](https://github.com/rootsdev/gedcomx-js).
__NPM__
```
npm install --save gedcomx-js gedcomx-fs-js
```
__CDN via [unpkg](https://unpkg.com/#/)__
```html
```
In the browser, gedcomx-fs-js is attached to the `window` as a global named `GedcomxFS`.
__Full Build__
As of 1.3.1 we also publish a full build which includes gedcomx-js and thus
doesn't require you to install or include it seperately and also doesn't
require you to call `GedcomX.addExtensions()` as documented below.
## Usage
```js
// First load gedcomx-js. Then we register the FS extensions.
GedcomX.addExtensions(GedcomxFS);
```