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

https://github.com/entitizer/entity-mapper-js

Entity mapper nodejs module
https://github.com/entitizer/entity-mapper-js

entitizer entity entity-mapper

Last synced: 4 months ago
JSON representation

Entity mapper nodejs module

Awesome Lists containing this project

README

          

# entitizer.entity-mapper

Entitizer entity mapper module.

## Usage

```
import { getEntities } from 'wiki-entity';
import { fromWikiEntity } from 'entitizer.entity-mapper';

const language = 'en';
// get Europe by title
getEntities({ language, titles: 'Europe' })
.then(entities => {
const wikiEntity = entities[0];
// convert WikiEntity to an Entitizer Entity
const entity = fromWikiEntity(wikiEntity, language);
});
```