-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
71 lines (56 loc) · 1.79 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
67
68
69
70
71
// SISTEMA OPERATIVO
// const os = require('os');
// console.log("OS", os.platform());
// console.log("Version", os.release());
// console.log("Bytes", os.freemem());
// console.log("Total Memory", os.totalmem());
// CREAR ARCHIVO
// const fs = require('fs');
// CALL BACK , CODIGO ASINCRONO
// fs.writeFile('./texto.txt', 'linea uno', function(error){
// if (error) {
// console.log(error);
// }
// console.log('Archivo creado');
// })
// console.log('Ultima linea de codigo');
// LEER ARCHIVO
// fs.readFile('./texto.txt', function(err, data){
// if (err) {
// console.log(err);
// }
// console.log(data.toString());
// })
// const http = require('http');
// const colors = require('colors')
// http.createServer( function (req, res){
// // res.writeHead(200, { 'Content-type' : 'text/html' });
// // res.write('<h1>Hola mundo</h1>');
// res.writeHead(200, { 'Content-type' : 'text/plain' });
// res.write('Texto');
// res.end();
// }).listen('3000');
// // const manejadordelservidor
// // DECIRLE QUE ES LO QUE TIENE QUE HACER
// const handleServer = function (req, res){
// res.writeHead(200, { 'Content-type' : 'text/html' });
// res.write('<h1>Hola mundo</h1>');
// res.end();
// }
// // CUANDO SE CREE EL SERVIDOR LLLAMAR AL LA FUNCION CREADA
// const server = http.createServer( handleServer );
// // ESCUCHAR EL SERVIDOR QUE A CREADO EN EL PUERTO 3000
// server.listen('3000', function () {
// console.log('Servidor en puerto 3000'.green);
// });
// CREANDO SERVIDOR CON EXPRESS.
const express = require('express');
const colors = require('colors')
const server = express();
server.get('/', (req, res) => {
res.send('<h1>Hola mundo</h1>');
res.end();
})
server.listen(3001, () => {
console.log('Puerto 3001'.yellow);
})