Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.18 KB

Introduccion-nodejs.md

File metadata and controls

50 lines (43 loc) · 1.18 KB

Introducción a Node.js

App.js

const http = require('http'); // Cargando un módulo de Node.js
const url = require('url');

const rd = require('./modules/retrievedate') ; //Cargamos un módulo propio que esta en ./modules/retrievedate.js

http.createServer((req, res) => {
    res.writeHead(200, {'Content-Type': 'text/html'});
    //res.write("La fecha y hora es: "+ rd.RetrieveDate());
    const query = url.parse(req.url, true).query;
    const text = query.year + " " + query.month
    //res.end("Holaaaa Mundo!!!!");
    res.end(text);
}).listen(8080);

index.js

const http = require('http');
const fs = require('fs');

http.createServer((req, res) => {
    fs.readFile('./html/demo.html', function(err, data) {
        res.writeHead(200, {'Content-Type': 'text/html'});
        res.write(data);
        return res.end();
    });
}).listen(3200);

/html/demo.html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>MI PÁGINA EN NODE</title>
    </head>
    <body>
        <h1>MIRA MAMÁ ESTOY PROGRAMANDO EN NODE</h1>
        <p>
            Estoy aprendiendo Node.js en vez de hacerme wey.
        </p>
    </body>
</html>