├── .gitignore ├── LICENSE ├── api_esencial ├── cert.pem ├── https.js ├── llave.pem └── sockets.js ├── backend ├── app.js ├── bin │ └── www ├── holamundo │ ├── app.js │ └── package.json ├── package.json ├── public │ └── stylesheets │ │ └── style.css ├── routes │ ├── animales.js │ ├── index.js │ └── users.js └── views │ ├── error.ejs │ └── index.ejs ├── bdatos ├── app.js ├── app_sqlite.js └── base.sqlite ├── esenciales_js ├── arreglos.js ├── funcional.js ├── funciones_flecha.js └── practicas.js ├── intro_node ├── archivos.js ├── canales.js ├── escritura.txt ├── eventos.js ├── http.js ├── intro.js ├── modulo.js └── texto.txt ├── npm └── proyecto1 │ └── package.json ├── procesos ├── hijo.js ├── lanzador.js ├── procesos.js └── worker.js ├── proy_api ├── app.js ├── bin │ └── www ├── build │ └── componentes │ │ └── login.js ├── definicion.txt ├── js │ └── componentes │ │ └── login.js ├── package.json ├── public │ ├── javascripts │ │ ├── login.js │ │ ├── main.js │ │ └── otro.js │ └── stylesheets │ │ └── style.css ├── routes │ ├── carrito.js │ ├── index.js │ ├── pedidos.js │ ├── productos.js │ └── users.js └── views │ ├── error.ejs │ ├── index.ejs │ ├── paginas │ ├── login.ejs │ └── prueba.ejs │ └── pie.ejs ├── proy_cliente ├── cliente.js ├── main.js ├── package.json └── test │ └── cliente.js ├── pruebas ├── calculadora.js └── test │ └── prueba.js └── temario.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /api_esencial/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/api_esencial/cert.pem -------------------------------------------------------------------------------- /api_esencial/https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/api_esencial/https.js -------------------------------------------------------------------------------- /api_esencial/llave.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/api_esencial/llave.pem -------------------------------------------------------------------------------- /api_esencial/sockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/api_esencial/sockets.js -------------------------------------------------------------------------------- /backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/app.js -------------------------------------------------------------------------------- /backend/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/bin/www -------------------------------------------------------------------------------- /backend/holamundo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/holamundo/app.js -------------------------------------------------------------------------------- /backend/holamundo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/holamundo/package.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/public/stylesheets/style.css -------------------------------------------------------------------------------- /backend/routes/animales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/routes/animales.js -------------------------------------------------------------------------------- /backend/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/routes/index.js -------------------------------------------------------------------------------- /backend/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/routes/users.js -------------------------------------------------------------------------------- /backend/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/views/error.ejs -------------------------------------------------------------------------------- /backend/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/backend/views/index.ejs -------------------------------------------------------------------------------- /bdatos/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/bdatos/app.js -------------------------------------------------------------------------------- /bdatos/app_sqlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/bdatos/app_sqlite.js -------------------------------------------------------------------------------- /bdatos/base.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/bdatos/base.sqlite -------------------------------------------------------------------------------- /esenciales_js/arreglos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/esenciales_js/arreglos.js -------------------------------------------------------------------------------- /esenciales_js/funcional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/esenciales_js/funcional.js -------------------------------------------------------------------------------- /esenciales_js/funciones_flecha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/esenciales_js/funciones_flecha.js -------------------------------------------------------------------------------- /esenciales_js/practicas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/esenciales_js/practicas.js -------------------------------------------------------------------------------- /intro_node/archivos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/intro_node/archivos.js -------------------------------------------------------------------------------- /intro_node/canales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/intro_node/canales.js -------------------------------------------------------------------------------- /intro_node/escritura.txt: -------------------------------------------------------------------------------- 1 | Holaabcdefghi -------------------------------------------------------------------------------- /intro_node/eventos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/intro_node/eventos.js -------------------------------------------------------------------------------- /intro_node/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/intro_node/http.js -------------------------------------------------------------------------------- /intro_node/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/intro_node/intro.js -------------------------------------------------------------------------------- /intro_node/modulo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/intro_node/modulo.js -------------------------------------------------------------------------------- /intro_node/texto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/intro_node/texto.txt -------------------------------------------------------------------------------- /npm/proyecto1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/npm/proyecto1/package.json -------------------------------------------------------------------------------- /procesos/hijo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/procesos/hijo.js -------------------------------------------------------------------------------- /procesos/lanzador.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/procesos/lanzador.js -------------------------------------------------------------------------------- /procesos/procesos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/procesos/procesos.js -------------------------------------------------------------------------------- /procesos/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/procesos/worker.js -------------------------------------------------------------------------------- /proy_api/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/app.js -------------------------------------------------------------------------------- /proy_api/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/bin/www -------------------------------------------------------------------------------- /proy_api/build/componentes/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/build/componentes/login.js -------------------------------------------------------------------------------- /proy_api/definicion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/definicion.txt -------------------------------------------------------------------------------- /proy_api/js/componentes/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/js/componentes/login.js -------------------------------------------------------------------------------- /proy_api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/package.json -------------------------------------------------------------------------------- /proy_api/public/javascripts/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/public/javascripts/login.js -------------------------------------------------------------------------------- /proy_api/public/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/public/javascripts/main.js -------------------------------------------------------------------------------- /proy_api/public/javascripts/otro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/public/javascripts/otro.js -------------------------------------------------------------------------------- /proy_api/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/public/stylesheets/style.css -------------------------------------------------------------------------------- /proy_api/routes/carrito.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/routes/carrito.js -------------------------------------------------------------------------------- /proy_api/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/routes/index.js -------------------------------------------------------------------------------- /proy_api/routes/pedidos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/routes/pedidos.js -------------------------------------------------------------------------------- /proy_api/routes/productos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/routes/productos.js -------------------------------------------------------------------------------- /proy_api/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/routes/users.js -------------------------------------------------------------------------------- /proy_api/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/views/error.ejs -------------------------------------------------------------------------------- /proy_api/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/views/index.ejs -------------------------------------------------------------------------------- /proy_api/views/paginas/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/views/paginas/login.ejs -------------------------------------------------------------------------------- /proy_api/views/paginas/prueba.ejs: -------------------------------------------------------------------------------- 1 | Esta es una página de prueba 2 | -------------------------------------------------------------------------------- /proy_api/views/pie.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_api/views/pie.ejs -------------------------------------------------------------------------------- /proy_cliente/cliente.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_cliente/cliente.js -------------------------------------------------------------------------------- /proy_cliente/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_cliente/main.js -------------------------------------------------------------------------------- /proy_cliente/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_cliente/package.json -------------------------------------------------------------------------------- /proy_cliente/test/cliente.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/proy_cliente/test/cliente.js -------------------------------------------------------------------------------- /pruebas/calculadora.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/pruebas/calculadora.js -------------------------------------------------------------------------------- /pruebas/test/prueba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/pruebas/test/prueba.js -------------------------------------------------------------------------------- /temario.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgevgut/curso_nodejs/HEAD/temario.txt --------------------------------------------------------------------------------