# node-fhir-validator

> HL7 FHIR resources validator for node.js

Latest version **0.0.0** (published 2017-11-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install node-fhir-validator
pnpm add node-fhir-validator
yarn add node-fhir-validator
bun add node-fhir-validator
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.0 |
| Published | 2017-11-14 |
| First published | 2017-11-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | AKIRA-MIYAKE |
| Maintainers | akira-miyake |
| Keywords | FHIR |

## Links

- npm: https://www.npmjs.com/package/node-fhir-validator
- Repository: https://github.com/AKIRA-MIYAKE/node-fhir-validator
- Homepage: https://github.com/AKIRA-MIYAKE/node-fhir-validator#readme
- Issues: https://github.com/AKIRA-MIYAKE/node-fhir-validator/issues
- npm.io page: https://npm.io/package/node-fhir-validator

## Dependencies (1)

- [ajv](https://npm.io/package/ajv.md) ^5.3.0

## Recent versions

- 0.0.0 (latest) — 2017-11-14

## README

# node-fhir-validator
HL7 FHIR resources validator for node.js

## Overview
This is a validation library for [HL7 FHIR](https://www.hl7.org/fhir/index.html) resources.  
Including JSON schema that provided with [Validating Resources](http://hl7.org/fhir/validation.html).

## Install

```
$ npm install --save node-fhir-validator
```

## Usage

```
const { Validator } = require('node-fhir-validator')
const validator = new Validator()

const inputData = {
  // Patient data.
}

try {
  const data = await validator.validate('Patient', inputData)
} catch (error) {
  // Error handling.
}
```

---
_Source: https://npm.io/package/node-fhir-validator · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
