- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://appjs.com/
- 软件文档: https://github.com/appjs/appjs/wiki
软件介绍
AppJS 是一个令人振奋的 JavaScript 库,使我们能够使用 Web 技术快速开发桌面应用程序(HTML,CSS和JavaScript)。AppJS 使用 Node.js 做为后端支撑。
示例代码:
/**
* Begin by requiring appjs.
**/
var app = require('appjs');
// serve files to browser requests to "http://appjs/*"
app.serveFilesFrom(path.resolve(__dirname, 'public'));
/**
* There are other routing functions that you can use like `post`, `get` or `all`.
**/
app.post('/',function(req,res,next){
res.send('Hey! How are you '+req.post('firstname'));
})
/**
* Create a window and point it to http://appjs/. This url is a special url.
* It is not a http request. AppJS manages these requests manually using routers you define.
**/
var window = app.createWindow('http://appjs/', {
width : 640,
height : 460,
left : -1, // optional, -1 centers
top : -1, // optional, -1 centers
autoResize : false, // resizes in response to html content
resizable : true, // controls whether window is resizable by user
showChrome : true, // show border and title bar
opacity : 1, // opacity from 0 to 1 (Linux)
alpha : false, // alpha composited background (Windows & Mac)
fullscreen : false, // covers whole screen and has no border
disableSecurity : true // allow cross origin requests
});
/**
* This event is fired when window is ready and loading the first page is finished.
**/
window.on("ready",function(){
console.log("Event Ready called");
this.frame.show();
});
Android编程权威指南(第3版)
比尔·菲利普斯 (Bill Phillips)、克里斯·斯图尔特 (Chris Stewart)、克莉丝汀·马西卡诺 (Kristin Marsicano) / 王明发 / 人民邮电出版社 / 2017-6 / 129.00元
Big Nerd Ranch 是美国一家专业的移动开发技术培训机构。本书主要以其Android 训练营教学课程为基础,融合了几位作者多年的心得体会,是一本完全面向实战的Android 编程权威指南。全书共36 章,详细介绍了8 个Android 应用的开发过程。通过这些精心设计的应用,读者可掌握很多重要的理论知识和开发技巧,获得宝贵的开发经验。 第3 版较之前版本增加了对数据绑定等新工具的介......一起来看看 《Android编程权威指南(第3版)》 这本书的介绍吧!
