This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .css-table { | |
| display:table; | |
| width:500px; | |
| background-color:#F9F9F9; | |
| } | |
| .css-table-cell { | |
| display:table-cell; | |
| width:30%; | |
| padding:3%; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require('express'); | |
| var app = express(); | |
| // indica en consola que el server está ok | |
| console.log("Servidor ON"); | |
| // cada vez que nuestra app esté escuchando | |
| // en el puerto 3000, muestra el mensaje. | |
| app.get('/', function(req, res){ |
NewerOlder