Client for DBC webservice OpenSearch
npm install dbc-node-opensearch-client

Node client for the DBC OpenSearch webservice https://opensource.dbc.dk/services/open-search-web-service.
Implements the searchOperation of the webservice for retrieving either a search result list or a work.
Example
``
params = {
query: 'harry potter',
start: 1,
stepValue: 10,
sort: 'rank_frequency'
};
OpenSearch.getSearchResult(params);
`
Example
`
params = {
query: 'rec.id=870970-basis:21907960'
};
OpenSearch.getWorkResult(params);
`
Example
`
config = {
wsdl: 'http://opensearch.addi.dk/4.0.1/?wsdl',
agency: '000000',
profile: 'test',
cache: standardCache
};
OpenSearch.init(config);
``