Skip to content

add: Core module #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 23, 2023
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