How do I handle local file uploads in electron?
问题 I'm having a hard time figuring out how to approach file uploads in atom electron. I would post code but I don't even know where to begin with this one. In a standard web app I would post from the client to the server, either via a standard postback or using an ajax request. I have some pretty cool solutions for that. But in the case of electron, I'm not sure where or how to "post" the file back. I guess I just want to access the contents of my <input type='file' /> from node.js. How do I do