Skip to content

Instantly share code, notes, and snippets.

@UlisesGascon
Created April 23, 2017 00:29
Show Gist options
  • Save UlisesGascon/673bbea54e73fe1242b569cb7e6bc529 to your computer and use it in GitHub Desktop.
Save UlisesGascon/673bbea54e73fe1242b569cb7e6bc529 to your computer and use it in GitHub Desktop.
Ejemplo de eventos para "Pensar Asícronamente en un mundo síncrono"
var fs = require("fs");
fs.readFile("fichero-1.txt", 'utf-8', function(error, contenido) {
console.log(error ? "Error en la lectura" : "Contenido del fichero:", contenido);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment