UNPKG
mongo-express-leufu
Version:
latest (0.51.6)
0.51.6
0.51.5
0.51.3
0.51.2
Web-based admin interface for MongoDB
mongo-express-leufu
/
test
/
testMongoConfig.js
12 lines
(10 loc)
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
module
.
exports
= {
host
:
'localhost'
,
port
:
27017
,
dbName
:
'mongo-express-test-db'
,
makeConnectionUrl
:
() =>
{
const
m =
module
.
exports
;
return
`mongodb://
${m.host}
:
${m.port}
/
${m.dbName}
`
; }, };