RAMP-API security component
npm install @trifinlabs/ramp-api-security#RAMP API Security Module
##Usage
Install as dependency
```
npm i @trifinlabs/ramp-api-security`
Copy environment variablesbash`
cat ./node_modules/@trifinlabs/ramp-api-security/.env.dist >> .env
##Sample component-config.json
`json``
{
"security": {
"enabled": true,
"publicEndpoints": [
{
"path": "/Messages/push.*",
"method": "POST"
},
{
"path": "/Auth/signup.*",
"method": "POST"
},
{
"path": "/Auth/signin.*",
"method": "POST"
},
{
"path": "/Auth/authorize*",
"method": "POST"
},
{
"path": "/Job/.*",
"method": "GET"
},
{
"path": "/Auth/social/signup.*",
"method": "POST"
}
]
}
}