Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.
/ sfx-resolve Public archive

Resolves an OpenURL against an SFX instance

License

Notifications You must be signed in to change notification settings

mehmetc/sfx-resolve

Repository files navigation

sfx-resolve

Resolves an OpenURL against an SFX instance

Docker

docker run -p 3000:3000 -v /path/to/config.json:/app/config.json -v /path/to/cache:/app/cache mehmetc/sfx-resolve:latest

Install

yarn global add sfx-resolve

OR

npm install sfx-resolve -g

Start

$ sfxResolve

Configuration (config.json)

  • endpoints: is a list of SFX servers that will be queried
    • code: code of the SFX server
    • name: display name of the SFX server
    • url: SFX endpoint
  • cache: a path to where the cache can be stored
{
    "endpoints": [
        {"code": "a1", "name": "University of A", "url": "https://sfx.a.edu/sfx-a"},
        {"code": "b1", "name": "University of B", "url": "https://sfx.b.edu/sfx-b"}      
    ],
    "cache": "./cache"    
}

Usage

  • ip: optional IP address of caller
  • url: OpenUrl to resolve
http:https://127.0.0.1:3000?ip=1.1.1.1&url=http:https://sfx.service.com?ctx_ver=Z39.88-2004 ...