Returns all the environment variables that are prefixed with the specified value
npm i -S subenv
'use strict'
const subenv = require('subenv')
process.env.capitals_USA = 'Washington'
process.env.capitals_hungary = 'Budapest'
console.log(subenv('capitals'))
//> { usa: 'Washington', hungary: 'Budapest' }