Like i asked in the title can i have the Fs addon for npm
Hi There, @Elvarogaming
Here is for Console: pnpm i fs
Here is for package.json: "fs": "0.0.1-security"
Have a good day!
It’s automatically installed with Node - no need to install it again. Just load it up by const fs = require("fs");
1 Like
FS module is preinstalled in NodeJS, you only need to require the module.
Example: const fs = require("fs")
1 Like