codecamp

APP(桌面, 移动, 平板等) 工具

APP(桌面, 移动, 平板等) 工具

前端 App 框架:

全栈 JS App 平台:

移动 Web UI/网站/App 框架:

这些解决方案可以被用到任何地方, 包括 Web 视图(Web 平台和浏览器引擎等) APP.

Native Hybrid mobile webview (i.e. browser engine driven) frameworks:

These solution typically use Cordovacrosswalk, or a custom webview as bridge to native api's.

Native Hybrid mobile development webview (i.e. browser engine driven) environments/platforms/tools:

These solution typically use Cordovacrosswalk, or a custom webview as bridge to native api's.

Native desktop webview (i.e. browser engine driven) app frameworks:

Native mobile app frameworks (aka JavaScript Native apps)

These solutions use a JS engine at runtime to inerput JS and bridget that to native api's. No browser engine or webview is used. The ui is constructed from native UI components.

References:

App seeds/starters/boilerplates:

静态网页生成器工具
脚手架工具
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }