You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will replace the existing buffer stored in the file.
What is the feature you are proposing to solve the problem?
I propose adding a method parameter that sets append to true. This way, instead of overwriting the existing file, the new data will be appended to it.
For example:
awaits3file.write("Hello World!",{append: true});
What alternatives have you considered?
My alternative since we can append chunk by chunk by using the S3 builtin by bun and it because it did not supported yet. My alternative I have considerd is using the presigned.
The text was updated successfully, but these errors were encountered:
What is the problem this feature would solve?
Currently when executing this:
It will replace the existing buffer stored in the file.
What is the feature you are proposing to solve the problem?
I propose adding a method parameter that sets append to true. This way, instead of overwriting the existing file, the new data will be appended to it.
For example:
What alternatives have you considered?
My alternative since we can append chunk by chunk by using the S3 builtin by bun and it because it did not supported yet. My alternative I have considerd is using the presigned.
The text was updated successfully, but these errors were encountered: