Last active
August 6, 2019 01:45
-
-
Save edysegura/718f16d69361a03deae84b45ecf3f306 to your computer and use it in GitHub Desktop.
Promises & Async/Await
This file contains 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
const { promisify } = require('util'); | |
const fs = require('fs'); | |
const readFile = promisify(fs.readFile); | |
const writeFile = promisify(fs.writeFile); | |
function readData(filename) { | |
const createMessage = data => ({ filename, data }); | |
return readFile(filename, 'utf-8').then(createMessage); | |
} | |
function writeData(file) { | |
const data = file.data + '\nnew content'; | |
const createMessage = data => ({ filename: file.filename }); | |
return writeFile(file.filename, data).then(createMessage); | |
} | |
function addToLog(data) { | |
const logMessage = `${data.filename} has been changed` | |
return writeFile('my-log.txt', logMessage) | |
} | |
function notifyOnSuccess() { | |
console.log('Process has been finished!') | |
} | |
function notifyOnError(error) { | |
console.log('Process has been failed: ') | |
console.log(error.message) | |
} | |
async function main() { | |
try { | |
const file = await readData('my-file.txt'); | |
const result = await writeData(file); | |
await addToLog(result); | |
notifyOnSuccess(); | |
} catch (error) { | |
notifyOnError(error); | |
} | |
} | |
main(); |
This file contains 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
const { promisify } = require('util'); | |
const fs = require('fs'); | |
const readFile = promisify(fs.readFile); | |
const writeFile = promisify(fs.writeFile); | |
function readData(filename) { | |
const createMessage = data => ({ filename, data }); | |
return readFile(filename, 'utf-8').then(createMessage); | |
} | |
function writeData(file) { | |
const data = file.data + '\nnew content'; | |
const createMessage = () => ({ filename: file.filename }); | |
return writeFile(file.filename, data).then(createMessage); | |
} | |
function addToLog(data) { | |
const logMessage = `${data.filename} has been changed` | |
return writeFile('my-log.txt', logMessage) | |
} | |
function notifyOnSuccess() { | |
console.log('Process has been finished!') | |
} | |
function notifyOnError(error) { | |
console.log('Process has been failed: ') | |
console.log(error.message) | |
} | |
readData('my-file.txt') | |
.then(writeData) | |
.then(addToLog) | |
.then(notifyOnSuccess) | |
.catch(notifyOnError) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment