mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-08 06:53:00 -04:00
10 lines
135 B
JavaScript
10 lines
135 B
JavaScript
const fs = require("fs");
|
|
|
|
console.log("first");
|
|
|
|
const res = fs.readFileSync("file.txt");
|
|
|
|
console.log(res);
|
|
|
|
console.log("second");
|
|
|