-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
66 lines (47 loc) · 1.55 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const http = require('http');
const express = require('express');
const app = express();
const path = require('path');
const server = require('http').createServer(app);
const bodyParser = require('body-parser');
const fs = require('fs');
//---------------------------------------------------- Configuracion del Servidor-----------------------------
const hostname = '127.0.0.1';
const port = 3000;
app.use(express.static('public'));
app.use(bodyParser.json()); // for parsing application/json
app.use(bodyParser.urlencoded({ extended: true })); // for parsing application/x-www-form-urlencode
/**
* DIRECCION DE INICIO
*/
app.get("/", function (solictud, respuesta) {
respuesta.sendFile(path.join(__dirname + '/public/Pages/index.html'));
});
/**
* localhost:3000/checkFile
*/
app.post("/searchFile",function(solictud,respuesta){
let direccion = solictud.body.direccion;
let dir = path.join(__dirname,'public/Files/' + direccion);
if(fs.existsSync(dir)){
let content = fs.readFileSync(dir,).toString('utf8');
salida = {
error: false,
codigo : content
};
respuesta.send(salida);
}
else{
salida = {
error: true
};
respuesta.send(salida);
}
});
app.get('*', function (solictud, respuesta) {
respuesta.send("Error 404");
});
//------------------------------------------------- Configuracion de IP Y PUERTO -------------------------------------------------
server.listen(port, hostname, () => {
console.log("Servidor Iniciado");
});