Created
April 23, 2017 00:29
-
-
Save UlisesGascon/673bbea54e73fe1242b569cb7e6bc529 to your computer and use it in GitHub Desktop.
Ejemplo de eventos para "Pensar Asícronamente en un mundo síncrono"
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 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