Live data from Hacker News

Ask HN: What is the best way for kids to build a mobile app?

news.ycombinator.com

11–12 of 12 posts

Re: Ask HN: What is the best way for kids to build a mobile app?

#11
post #4

The easiest way to run code on a mobile device is to serve it as HTML. A simple way to do this is from a laptop over the local LAN with Python's simpleHTTPServer or Python3's http.server. Any mobile (or non-mobile) device can connect to the 192.168.XXX.XXX:port so long as it has a web browser. This avoids a dependency on the app store, complex tooling, emulators, fees, registrations, etc. It touches on many topics mo…

Well, if there is an easy enough pwa framework, yhen it might be almost indistinguishable for most people :)

Re: Ask HN: What is the best way for kids to build a mobile app?

#12
post #11
post #4

The easiest way to run code on a mobile device is to serve it as HTML. A simple way to do this is from a laptop over the local LAN with Python's simpleHTTPServer or Python3's http.server. Any mobile (or non-mobile) device can connect to the 192.168.XXX.XXX:port so long as it has a web browser. This avoids a dependency on the app store, complex tooling, emulators, fees, registrations, etc. It touches on many topics mo…

Well, if there is an easy enough pwa framework, yhen it might be almost indistinguishable for most people :)

Usually for me

  function > indistinguishability
when I'm trying to get something done. That's where I would start with a 5th grader.
Post reply on HN