Ask HN: How are you building cross-platform (mobile and browser) apps?
71–80 of 84 posts
Re: Ask HN: How are you building cross-platform (mobile and browser) apps?
#72This is exactly the vision we have for Ionic and where we are taking it. One app that works great in the app stores and when deployed on the web (or even electron), built entirely on standard browser technologies. If you are put off by Angular, our v4 release (alpha right now but quickly heading into beta and then production ready) was rebuilt on top of web components and is framework agnostic. It also happens to be…
Vue.js PWA, on the other hand, rebuild quite fast.
With that said, I really like Ionic PWA and the component approach. Will wait for the stable release.
Re: Ask HN: How are you building cross-platform (mobile and browser) apps?
#73If you have any questions or would like a free trial code, please email me directly at michael@apppile.com
Happy Coding!
Re: Ask HN: How are you building cross-platform (mobile and browser) apps?
#74This is exactly the vision we have for Ionic and where we are taking it. One app that works great in the app stores and when deployed on the web (or even electron), built entirely on standard browser technologies. If you are put off by Angular, our v4 release (alpha right now but quickly heading into beta and then production ready) was rebuilt on top of web components and is framework agnostic. It also happens to be…
Not sure about the speed benchmark, but Stencil's build process could be improved. It takes more than 1s to build on file changes. Definitely not ideal for development. Vue.js PWA, on the other hand, rebuild quite fast. With that said, I really like Ionic PWA and the component approach. Will wait for the stable release.
Re: Ask HN: How are you building cross-platform (mobile and browser) apps?
#75Earlier quoted context omitted.
Cool app! I got a little confused as to how to add songs once you're a DJ, but the whole things looks cool, and you seem to have a nice community already!
Thanks! Please join in :) Also, thanks for the feedback I actually keep getting similar comments that it's a lot to learn all. I'm currently trying to simplify things. To add a track you just add it to your "queue" by searching and clicking the plus icon, then when it's your turn (your UN is all the way to the left) your track will play for everyone. Assuming you figured it out but just FYI
It's super fun because I tried to make a music app to make collaborative playlists on steroids but my UX is so lacking. You can check it out at http://www.niche.fm
Re: Ask HN: How are you building cross-platform (mobile and browser) apps?
#76Earlier quoted context omitted.
How does it handle Electron apps? I thought playing with EXPO was a limited venture?
I'm currently developing with Expo with plans to expand to Electron (though I haven't written anything for Electron yet, just the React-Native and Expo portion) but my theory is that once you have the core React functionality down (The API endpoints, Reducers and Actions (if using redux), and general component structure) then porting to Electron will be fairly trivial. React-Native has a lot of cross-over with React…
[1] https://medium.com/@ron.arts/web-support-for-create-react-na...
Re: Ask HN: How are you building cross-platform (mobile and browser) apps?
#77Re: Ask HN: How are you building cross-platform (mobile and browser) apps?
#78Consider taking a look at the Visual Studio tools, which have really matured over the last few years: https://www.visualstudio.com/vs/features/modern-web-tooling/ Specifically, tools for Apache Cordova: https://www.visualstudio.com/vs/features/cordova/ (disclaimer: I haven't used them, but I've heard very positive feedback)
1) The Microsoft development product line is great at some things, but not for directly enabling cross web/mobile solutions. However do use VS Code as the environment for other solutions mentioned here. 2) If you are a non-MS person, make sure you don’t miss out on the greatness of Visual Studio Code by dismissing it as yet another Windows centric product. VS Code is world class performant, has a great plugin arch/ec…
I second your recommendation, I'm a sucker for a sleek editor with a great plugin architecture.
Re: Ask HN: How are you building cross-platform (mobile and browser) apps?
#79I'm using flutter [1] which uses the dart programming language. I'm loving the static typing of dart, hot reload of flutter, very good debugging tools. Also the fact that layout/ui and logic are all laid out in code and not in a separate markup lang 1. https://flutter.io