UNPKG

rxnav-api

Version:

promise-based interface to RXNAV to access RxNorm and other interesting medical information

11 lines (9 loc) 321 B
const RxnormApi = require('../rxnorm-api') const ndcProperties = () => { new RxnormApi().ndcProperties('37000-653-04')//'0069-3150-83') .then((ndcinfo) => console.log(JSON.stringify(ndcinfo))) .catch(err => console.log(`err=${err}`)) } //ndcProperties() console.log('testing rxnorm-api')