Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liquid36/snowstorm-js
SnomedCT Snowstorm Client for Javascript
https://github.com/liquid36/snowstorm-js
client javascript snomed-ct snowstorm
Last synced: about 8 hours ago
JSON representation
SnomedCT Snowstorm Client for Javascript
- Host: GitHub
- URL: https://github.com/liquid36/snowstorm-js
- Owner: liquid36
- License: mit
- Created: 2020-03-23T00:19:44.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T16:49:35.000Z (about 2 years ago)
- Last Synced: 2024-06-11T16:09:52.785Z (7 months ago)
- Topics: client, javascript, snomed-ct, snowstorm
- Language: TypeScript
- Size: 561 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Snowstorm.JS
SnomedCT Snowstorm Client for Javascript
## Install
```
npm i snowstorm.js --save
```## Usage
```javascript
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](https://github.com/liquid36/snowstorm-js/blob/master/src/endpoints.json)