FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Nodejs-REST-API/initDB.js at master · sravan225/Nodejs-REST-API · GitHub
sravan225
/
Nodejs-REST-API
Public
forked from
trulymittal/Nodejs-REST-API
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Nodejs-REST-API
/
initDB.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (33 loc) · 934 Bytes
Breadcrumbs
Nodejs-REST-API
/
initDB.js
Copy path
File metadata and controls
38 lines (33 loc) · 934 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const
mongoose
=
require
(
'mongoose'
)
;
module
.
exports
=
(
)
=>
{
mongoose
.
connect
(
process
.
env
.
MONGODB_URI
,
{
dbName
:
process
.
env
.
DB_NAME
,
user
:
process
.
env
.
DB_USER
,
pass
:
process
.
env
.
DB_PASS
,
useNewUrlParser
:
true
,
useUnifiedTopology
:
true
,
useFindAndModify
:
false
}
)
.
then
(
(
)
=>
{
console
.
log
(
'Mongodb connected....'
)
;
}
)
.
catch
(
err
=>
console
.
log
(
err
.
message
)
)
;
mongoose
.
connection
.
on
(
'connected'
,
(
)
=>
{
console
.
log
(
'Mongoose connected to db...'
)
;
}
)
;
mongoose
.
connection
.
on
(
'error'
,
err
=>
{
console
.
log
(
err
.
message
)
;
}
)
;
mongoose
.
connection
.
on
(
'disconnected'
,
(
)
=>
{
console
.
log
(
'Mongoose connection is disconnected...'
)
;
}
)
;
process
.
on
(
'SIGINT'
,
(
)
=>
{
mongoose
.
connection
.
close
(
(
)
=>
{
console
.
log
(
'Mongoose connection is disconnected due to app termination...'
)
;
process
.
exit
(
0
)
;
}
)
;
}
)
;
}
;
Back
|
FazBrowse Home
|
New Git URL