-
- Downloads
added a general GET endpoint to route data requests to eerie cloud
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "api-gateway", | ||
"version": "0.1.0", | ||
"description": "Front end API gateway server to route the request for ESM data to different sources (DKRZ, Jülich, etc).", | ||
"main": "src/server.js", | ||
"scripts": { | ||
"start": "nodemon --ext js --exec node src/server.js", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://gitlab.dkrz.de/ww-easier-data-access/api-gateway" | ||
}, | ||
"keywords": [ | ||
"esm-front-end-server", | ||
"esm-data-access" | ||
], | ||
"author": "WarmWorld Project Partners", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@hapi/hapi": "^21.3.12", | ||
"axios": "^1.8.1", | ||
"node-cache": "^5.1.2" | ||
}, | ||
"type": "module", | ||
"devDependencies": { | ||
"nodemon": "^3.1.9" | ||
} | ||
} |
src/server.js
0 → 100644
Please register or sign in to comment