Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions 4. Core Module/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// Core module
// File system
const fs = require("node:fs");

// Write string to file synchronous
// try {
// fs.writeFileSync("data/testSynchronous.txt", "Hello World Synchronous");
// } catch (error) {
// console.log(error.message);
// }

// Write string to file asynchronous
// fs.writeFile(
// "data/testAsynchronous.txt",
// "Hello World from asynchronous",
// (e) => {
// console.log(e);
// }
// );

// Read the content of the file Synchronous
// const data = fs.readFileSync("data/testSynchronous.txt", "utf-8");

// console.log(data);

// Read the content of the file Asynchronous
fs.readFile("data/testAsynchronous.txt", "utf-8", (err, data) => {
if (err) throw err;

console.log(data);
});
1 change: 1 addition & 0 deletions 4. Core Module/data/testAsynchronous.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello World from asynchronous
1 change: 1 addition & 0 deletions 4. Core Module/data/testSynchronous.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello World Synchronous