15 lines
260 B
JavaScript
15 lines
260 B
JavaScript
|
|
import express from "express";
|
||
|
|
|
||
|
|
const app = express();
|
||
|
|
|
||
|
|
app.get("/health", (req, res) => {
|
||
|
|
res.json({
|
||
|
|
status : "OK",
|
||
|
|
message : "Projeto WEB version 1.0.0"
|
||
|
|
})
|
||
|
|
});
|
||
|
|
|
||
|
|
app.listen(5000, () => {
|
||
|
|
console.log("Servidor inicializado!!!")
|
||
|
|
});
|