UNPKG
mystash
Version:
latest (0.2.0)
0.2.0
Personal finance app
github.com/jozsi/mystash
jozsi/mystash
mystash
/
src
/
backend
/
env.js
9 lines
(7 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
dotenv =
require
(
'dotenv-safe'
);
try
{ dotenv.
load
(); }
catch
(e) {
console
.
error
(
'Error: The following fields are missing from .env file:'
, e.
missing
.
join
(
', '
));
// eslint-disable-line no-console
process.
exit
(
1
); }