Skip to content
This repository was archived by the owner on Aug 21, 2020. It is now read-only.

Commit 4b295a3

Browse files
committed
Adicionada documentacion Comprada Amazon :bowtie:
1 parent 58b952d commit 4b295a3

5 files changed

Lines changed: 18 additions & 0 deletions

File tree

15DaysofJS/first.js

Whitespace-only changes.
1.09 MB
Binary file not shown.
7.4 MB
Binary file not shown.

15DaysofJS/nodequicktest/first.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
var http= require('http');
2+
http.createServer(function(req, res){
3+
res.writeHead(200, {'Content-Type': 'text/plain'});
4+
res.end('Cursito Rapido de 15 dias de Node.js\n');
5+
6+
7+
}).listen(1337, "127.0.0.1");
8+
console.log('Server is Running at http://127.0.0.1:1337/');
9+
10+
/*Se analizo todo acerca de REPL, y la interaccion es util desde mi punto de vista para :
11+
12+
*Testear fragmentos de código,
13+
*Revisar las funciones y librerias poco documentadas.
14+
posee cosas interesantes como son los atajos y la opcion de almacenar los datos en modo interactivos
15+
para revisar escribir .help en el directorio.
16+
17+
*/

15DaysofJS/nodequicktest/second.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/*Core de Node*/

0 commit comments

Comments
 (0)