nuxt-file-storage icon indicating copy to clipboard operation
nuxt-file-storage copied to clipboard

Easy solution to store files in your nuxt apps. Be able to upload files from the frontend and recieve them from the backend to then save the files in your project.

Results 14 nuxt-file-storage issues
Sort by recently updated
recently updated
newest added

When we upload files when using api tool for interface testing, we need to further process the data into base64, so I think the front end only transmits FormData data...

This fixes issue #4 for me because of the extra properties that are now available in de backend.

No properties of the uploaded file ```typescript export default defineEventHandler(async (event) => { const { file } = await readBody(event) await storeFileLocally( file.content, // the stringified version of the file...

I want to deploy an app built in Nuxt3 and I use nuxt-file-storage for upload images. How to configure the "mount" var once that I do not have access the...

Hello, I am trying to use your package but Laravel gives this warning "Image source not readable". When I test it with Postman, the installation is successful. Where could be...

I have a need to do a sequential download of several files. Is there a possibility to implement such a thing? So that the files are not replaced, but added...

I’ve bumped the package from `0.2.9` to `0.3.0` and started getting the following error: > [!CAUTION] > ERROR Please provide a mount path for the file storage module in your...

Hi, there! Thank you for your time and effort you put in this library. I have a question about replacing existing files stored on a server. I use your library...

It is possible to get upload progress of large files?

Hello @NyllRE, thank you for this awesome package. I found a minor issue with the filenames created in the `storeFileLocally` method. When you actually provide a filename it takes the...