Working on Config system (Saving & Loading user data) #3

Merged
snxraven merged 16 commits from MiTask/LinkUp-P2P-Chat:main into main 2024-06-09 03:11:48 -04:00
Showing only changes of commit 4a881ed721 - Show all commits

1
app.js
View File

@ -432,6 +432,7 @@ function writeConfigToFile(filePath) {
async function readConfigFromFile(filePath) {
await fs.readFile(filePath, 'utf8', (err, data) => {
if(err) return console.log("Error while reading config.json! ", err);
console.log(data)
config = JSON.parse(data);
});
}