DEV Community

Discussion on: How do people package simple backend-less utility apps made in JavaScript these days?

Collapse
 
morgantmsn profile image
morgantmsn • Edited

Electron could be a solution if you really need a packaged app. Maybe a missunderstood your question but why not just host it on firebase hosting or another hosting provider. I deploy react apps this way and I'm happy with it but you could do the same thing without any framework, you could even combine it with github action or other ci/cd (gitlab etc ...) to build and deploy on push. (After reading some comments, If the app does http request to server which don't have cors open it don't seems to be an option.