php - Chrome web apps - server side support -


does google chrome web store support server sided technologies such php or python? making productive web application have implemented in python wish give nice little web application interface , harness power of php...

does chrome support python or php; or chrome support server sided scripting?

i learning how develop chrome apps here...

if member aware of better tutorials please inform me...

or have build normal web applications , add logo , manifest , zip , publish it?

thankyou...

the platform supports server-side technologies same way c++ or java application support them: through http (probably restful) interfaces server side of app (if any) exposes. example, app might make request http://example.com/api/foo/bar/baz?param1=123&param2=456, , might json response app parse. doesn't matter server-side technology you're using, because api looks same app's perspective.

if you're asking php, ruby, python, go, node.js, etc., running on user's machine client-side app, no, that's not how chrome packaged apps work (though in theory 1 1 of environments running nacl module generates client-side code). instead, write code in similar way how you'd write pure ajax app: in javascript, without navigation, content/data being fetched in restful fashion whatever server/service use (or none in case of calculator or simple game doesn't talk network @ all). incidentally, we're finding ajaxy apps relatively simple convert packaged apps.

check out samples @ https://github.com/googlechrome/chrome-app-samples more idea of shape of platform.


Comments

Popular posts from this blog

php - get table cell data from and place a copy in another table -

javascript - Mootools wait with Fx.Morph start -

php - Navigate throught databse rows -