An example of simple API Gateway with NodeJS and ExpressJs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

25 lines
585 B

{
"name": "api-gateway",
"version": "1.0.0",
"description": "Simple API Gateway",
"main": "app/server.js",
"scripts": {
"start": "nodemon ./app/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Robby Muhammad",
"license": "MIT",
"dependencies": {
"axios": "^0.19.1",
"bcrypt": "^5.0.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.7",
"morgan": "^1.9.1",
"redis": "^2.8.0",
"yaml": "^1.7.2"
}
}