0.1.1 • Published 4 years ago

snowstorm.js v0.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

Snowstorm.JS

SnomedCT Snowstorm Client for Javascript

Install

npm i snowstorm.js --save

Usage

import { SnowstormJS } from 'snowstorm.js'

const snowstorm = new SnowstormJS('http://localhost:8080');

snowstorm.branching.retrieveBranch({ path: 'MAIN' })
         .then(console.log)
         .catch(console.error);

snowstorm.descriptions.findBrowserDescriptions({
    branch: 'MAIN/SNOMEDCT-ES',
    term: 'fiebre amarilla'
})
.then(console.log)
.catch(console.error);

Completed list of methods