-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
38 lines (29 loc) · 902 Bytes
/
app.js
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
const express = require("express");
const path = require("path");
const app = express();
const staticFiles = express.static("./public");
app.use(staticFiles);
app.get("/", (req, res) => {
// ruta del archivo
const fileToSend = path.join(__dirname, "/views/home.html");
res.sendFile(fileToSend);
});
app.get('/register',(req,res) => {
// ruta del archivo
const fileToSend = path.join(__dirname, "/views/register.html");
res.sendFile(fileToSend);
});
app.get('/login',(req,res) => {
//ruta de archivo
const fileToSend = path.join(__dirname, "/views/login.html");
res.sendFile(fileToSend);
} )
app.listen(process.env.PORT || 3000,function(){
console.log("Servidor corriendo en el puerto 3000");
})
// app.listen(3030, () => {
// console.log(
// "Servidor web corriendo en la direccion",
// "http://localhost:3030/"
// );
// });