Hi,
Question
I'm using steam-trade-offer manager and Amazon S3 to store the bot files and don't have RW access to the local file system. How can I use a custom file storage and not read/write from disk?
My attempts
If I set dataDirectory to null (https://github.com/DoctorMcKay/node-steam-user?tab=readme-ov-file#datadirectory)
const client = new SteamUser({ dataDirectory: null });
I get this unexpected error - I'm using client.storage.on callbacks to integrate a custom file storage.
If I don't set dataDirectory to null, I'm able to login but my node js process crashes since I'm not allowed to mkdir.
Best,
danger