FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nodeapi/index.js at master · hartungwill/nodeapi · GitHub
hartungwill
/
nodeapi
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
nodeapi
/
index.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (18 loc) · 651 Bytes
Breadcrumbs
nodeapi
/
index.js
Copy path
File metadata and controls
22 lines (18 loc) · 651 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
const
customExpress
=
require
(
'./config/customExpress'
)
const
conexao
=
require
(
'./infra/conexao'
)
const
Tabelas
=
require
(
'./infra/tabelas'
)
// Conecta com o banco
conexao
.
connect
(
erro
=>
{
if
(
erro
)
{
console
.
log
(
erro
)
}
else
{
//Se conseguiu conectar ao Banco, sobe o servidor
console
.
log
(
'conectado ao BD'
)
// Cria tabela se não existir
Tabelas
.
init
(
conexao
)
console
.
log
(
'Tabela INIT'
)
const
app
=
customExpress
(
)
const
porta
=
3000
//Inicia servidor
app
.
listen
(
porta
,
(
)
=>
console
.
log
(
`Servidor rodando na porta: http://localhost:
${
porta
}
`
)
)
}
}
)
Back
|
FazBrowse Home
|
New Git URL