I am using javascript fetch-api to read files from a folder. Consider I have a folder named 'Bin_folder' which has 6 files
Now if 2 users are using my website at the same time ,
How can I do this in javascript without the use of node.js.?
fetch('Bin_folder/'+ selectedFile)
.then(response => response.arrayBuffer())
.then(data => {
// Data process //
})