domain-datensatz

JSON files with pharmaceutical products in switzerland

Usage no npm install needed!

<script type="module">
  import domainDatensatz from 'https://cdn.skypack.dev/domain-datensatz';
</script>

README

Domain Datensatz

issues Build Status downloads

The following sources publish information about the available pharmaceutical products in Switzerland.

The files have been parsed and harmonized into json files. The documentation is available in German.

Get started

const { artikel } = require('domain-datensatz')

const result = Object.values(artikel).filter(item => {
  return item.applw == 'aural'
})
.map(item => {
  return item.name1
})

// [
//   'Otalgan, solution',
//   'Otothricinol, Suspension',
//   'Cerumenex, Tropfen',
//   'Panotile, gocce otologiche',
//   'Otipax, liquido',
//   'Polydexa, Ohrentropfen',
//   'Cerumenol, Tropfen',
//   'Otofa, Ohrentropfen',
//   'Otidolo, homöopathisch-spagyrische Tropfen',
//   'Similasan Ohrentropfen, Tropfen',
//   'Ciproxin HC, Ohrensuspension'
// ]
console.log(result)