rxnav-api
Version:
promise-based interface to RXNAV to access RxNorm and other interesting medical information
18 lines (14 loc) • 329 B
Markdown
# example: version #
## usage: version ##
### node ###
```
const {RxnavApi} = require('rxnav-api')
new RxnavApi().rxterms().version()
.then((res) =>
console.log(JSON.stringify(res)))
.catch(err => console.log(`err=${err}`))
```
### output ###
```
{"rxtermsVersion":"RxTerms201811"}
```