Skip to content

Instantly share code, notes, and snippets.

@flanger001
Last active October 10, 2025 09:59
Show Gist options
  • Save flanger001/8632cd3392d31e30bc0f372418d0a683 to your computer and use it in GitHub Desktop.
Save flanger001/8632cd3392d31e30bc0f372418d0a683 to your computer and use it in GitHub Desktop.
import fs from "node:fs";
function main() {
const file = fs.readFileSync(import.meta.filename, { encoding: "utf-8" });
process.stdout.write(file);
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment