How to load large local files using JavaScript?










0














Is there a way to handle very large files(like 2GB and over) locally in JavaScript without crashing the browser?



*I am aware of the input tag and the FileReader API, but it seems there is nothing like Node.js streams.










share|improve this question

















  • 1




    What exactly are you planning on doing with this file? Just curious.
    – SiddAjmera
    Nov 10 '18 at 10:04










  • This is mainly hypothetical for future development at the moment, but the reason I thought of asking this question was because of wanting to extract data from a dump of my Google data. Obviously, any kind of functionality I would use this for is to extract a smaller amount of data at once such as "find all dates when I am at specific location".
    – Damien Golding
    Nov 10 '18 at 10:07










  • Any reason why you would be asking js to strain under a job that serverside would find trivial?
    – lucas
    Nov 10 '18 at 10:17










  • @lucas No network upload so reduces data costs + can be done on slow network environments. Users can share the processing burden instead of having the server owner burden the load of everyone using the service. Don't like uploading private data to external server.
    – Damien Golding
    Nov 10 '18 at 10:28











  • You can offload your long running task (large file handling in this case) to Web Workers (developer.mozilla.org/en-US/docs/Web/API/Worker). The web worker runs within another thread (context) therefore it won't block your main thread (browser)
    – meteorzero
    Nov 10 '18 at 11:48
















0














Is there a way to handle very large files(like 2GB and over) locally in JavaScript without crashing the browser?



*I am aware of the input tag and the FileReader API, but it seems there is nothing like Node.js streams.










share|improve this question

















  • 1




    What exactly are you planning on doing with this file? Just curious.
    – SiddAjmera
    Nov 10 '18 at 10:04










  • This is mainly hypothetical for future development at the moment, but the reason I thought of asking this question was because of wanting to extract data from a dump of my Google data. Obviously, any kind of functionality I would use this for is to extract a smaller amount of data at once such as "find all dates when I am at specific location".
    – Damien Golding
    Nov 10 '18 at 10:07










  • Any reason why you would be asking js to strain under a job that serverside would find trivial?
    – lucas
    Nov 10 '18 at 10:17










  • @lucas No network upload so reduces data costs + can be done on slow network environments. Users can share the processing burden instead of having the server owner burden the load of everyone using the service. Don't like uploading private data to external server.
    – Damien Golding
    Nov 10 '18 at 10:28











  • You can offload your long running task (large file handling in this case) to Web Workers (developer.mozilla.org/en-US/docs/Web/API/Worker). The web worker runs within another thread (context) therefore it won't block your main thread (browser)
    – meteorzero
    Nov 10 '18 at 11:48














0












0








0







Is there a way to handle very large files(like 2GB and over) locally in JavaScript without crashing the browser?



*I am aware of the input tag and the FileReader API, but it seems there is nothing like Node.js streams.










share|improve this question













Is there a way to handle very large files(like 2GB and over) locally in JavaScript without crashing the browser?



*I am aware of the input tag and the FileReader API, but it seems there is nothing like Node.js streams.







javascript file blob local filereader






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 10 '18 at 9:57









Damien Golding

3642521




3642521







  • 1




    What exactly are you planning on doing with this file? Just curious.
    – SiddAjmera
    Nov 10 '18 at 10:04










  • This is mainly hypothetical for future development at the moment, but the reason I thought of asking this question was because of wanting to extract data from a dump of my Google data. Obviously, any kind of functionality I would use this for is to extract a smaller amount of data at once such as "find all dates when I am at specific location".
    – Damien Golding
    Nov 10 '18 at 10:07










  • Any reason why you would be asking js to strain under a job that serverside would find trivial?
    – lucas
    Nov 10 '18 at 10:17










  • @lucas No network upload so reduces data costs + can be done on slow network environments. Users can share the processing burden instead of having the server owner burden the load of everyone using the service. Don't like uploading private data to external server.
    – Damien Golding
    Nov 10 '18 at 10:28











  • You can offload your long running task (large file handling in this case) to Web Workers (developer.mozilla.org/en-US/docs/Web/API/Worker). The web worker runs within another thread (context) therefore it won't block your main thread (browser)
    – meteorzero
    Nov 10 '18 at 11:48













  • 1




    What exactly are you planning on doing with this file? Just curious.
    – SiddAjmera
    Nov 10 '18 at 10:04










  • This is mainly hypothetical for future development at the moment, but the reason I thought of asking this question was because of wanting to extract data from a dump of my Google data. Obviously, any kind of functionality I would use this for is to extract a smaller amount of data at once such as "find all dates when I am at specific location".
    – Damien Golding
    Nov 10 '18 at 10:07










  • Any reason why you would be asking js to strain under a job that serverside would find trivial?
    – lucas
    Nov 10 '18 at 10:17










  • @lucas No network upload so reduces data costs + can be done on slow network environments. Users can share the processing burden instead of having the server owner burden the load of everyone using the service. Don't like uploading private data to external server.
    – Damien Golding
    Nov 10 '18 at 10:28











  • You can offload your long running task (large file handling in this case) to Web Workers (developer.mozilla.org/en-US/docs/Web/API/Worker). The web worker runs within another thread (context) therefore it won't block your main thread (browser)
    – meteorzero
    Nov 10 '18 at 11:48








1




1




What exactly are you planning on doing with this file? Just curious.
– SiddAjmera
Nov 10 '18 at 10:04




What exactly are you planning on doing with this file? Just curious.
– SiddAjmera
Nov 10 '18 at 10:04












This is mainly hypothetical for future development at the moment, but the reason I thought of asking this question was because of wanting to extract data from a dump of my Google data. Obviously, any kind of functionality I would use this for is to extract a smaller amount of data at once such as "find all dates when I am at specific location".
– Damien Golding
Nov 10 '18 at 10:07




This is mainly hypothetical for future development at the moment, but the reason I thought of asking this question was because of wanting to extract data from a dump of my Google data. Obviously, any kind of functionality I would use this for is to extract a smaller amount of data at once such as "find all dates when I am at specific location".
– Damien Golding
Nov 10 '18 at 10:07












Any reason why you would be asking js to strain under a job that serverside would find trivial?
– lucas
Nov 10 '18 at 10:17




Any reason why you would be asking js to strain under a job that serverside would find trivial?
– lucas
Nov 10 '18 at 10:17












@lucas No network upload so reduces data costs + can be done on slow network environments. Users can share the processing burden instead of having the server owner burden the load of everyone using the service. Don't like uploading private data to external server.
– Damien Golding
Nov 10 '18 at 10:28





@lucas No network upload so reduces data costs + can be done on slow network environments. Users can share the processing burden instead of having the server owner burden the load of everyone using the service. Don't like uploading private data to external server.
– Damien Golding
Nov 10 '18 at 10:28













You can offload your long running task (large file handling in this case) to Web Workers (developer.mozilla.org/en-US/docs/Web/API/Worker). The web worker runs within another thread (context) therefore it won't block your main thread (browser)
– meteorzero
Nov 10 '18 at 11:48





You can offload your long running task (large file handling in this case) to Web Workers (developer.mozilla.org/en-US/docs/Web/API/Worker). The web worker runs within another thread (context) therefore it won't block your main thread (browser)
– meteorzero
Nov 10 '18 at 11:48













1 Answer
1






active

oldest

votes


















1














FileReader enables you to read contents of files asynchronously. With respect to large file (2GB in your case), you can use function/method FileReader.readAsArrayBuffer() to read a certain chunk size of a file in the memory hence this won't crash your browser, this blog is a good example.






share|improve this answer
















  • 1




    The important part here is the slice() method of Blob. readAsArrayBuffer will just crash the browser the same if you pass a too big Blob to it.
    – Kaiido
    Nov 11 '18 at 11:00











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237829%2fhow-to-load-large-local-files-using-javascript%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














FileReader enables you to read contents of files asynchronously. With respect to large file (2GB in your case), you can use function/method FileReader.readAsArrayBuffer() to read a certain chunk size of a file in the memory hence this won't crash your browser, this blog is a good example.






share|improve this answer
















  • 1




    The important part here is the slice() method of Blob. readAsArrayBuffer will just crash the browser the same if you pass a too big Blob to it.
    – Kaiido
    Nov 11 '18 at 11:00
















1














FileReader enables you to read contents of files asynchronously. With respect to large file (2GB in your case), you can use function/method FileReader.readAsArrayBuffer() to read a certain chunk size of a file in the memory hence this won't crash your browser, this blog is a good example.






share|improve this answer
















  • 1




    The important part here is the slice() method of Blob. readAsArrayBuffer will just crash the browser the same if you pass a too big Blob to it.
    – Kaiido
    Nov 11 '18 at 11:00














1












1








1






FileReader enables you to read contents of files asynchronously. With respect to large file (2GB in your case), you can use function/method FileReader.readAsArrayBuffer() to read a certain chunk size of a file in the memory hence this won't crash your browser, this blog is a good example.






share|improve this answer












FileReader enables you to read contents of files asynchronously. With respect to large file (2GB in your case), you can use function/method FileReader.readAsArrayBuffer() to read a certain chunk size of a file in the memory hence this won't crash your browser, this blog is a good example.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 11 '18 at 10:26









meteorzero

436414




436414







  • 1




    The important part here is the slice() method of Blob. readAsArrayBuffer will just crash the browser the same if you pass a too big Blob to it.
    – Kaiido
    Nov 11 '18 at 11:00













  • 1




    The important part here is the slice() method of Blob. readAsArrayBuffer will just crash the browser the same if you pass a too big Blob to it.
    – Kaiido
    Nov 11 '18 at 11:00








1




1




The important part here is the slice() method of Blob. readAsArrayBuffer will just crash the browser the same if you pass a too big Blob to it.
– Kaiido
Nov 11 '18 at 11:00





The important part here is the slice() method of Blob. readAsArrayBuffer will just crash the browser the same if you pass a too big Blob to it.
– Kaiido
Nov 11 '18 at 11:00


















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237829%2fhow-to-load-large-local-files-using-javascript%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

How do I collapse sections of code in Visual Studio Code for Windows?

ャフサォクコ ケウ,コ,ワ メ,ロスョノ゙,クネ,フムカヤヲニ,エコ゚ツ ウイオン゙ケワサネォキモュキォウイノンコチ゚メヌナイゥフュ,カヒウネェ ネ,ホノケ,ムュキ ッボーミュハ,チ ツス ィ メウイマヤ,゙ウチ ヅ ロ,ォジヌェ ャヌット ェ,マャ,チナエヒネソキツテ トホヲヲミーァ