Web 调用 Node 模块 NW.js
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://nwjs.io/
- 软件文档: https://github.com/nwjs/nw.js/wiki
软件介绍
NW.js 可以让你直接在 DOM 上调用所有 Node.js 模块,相当于使用一种新的方法来编写 Web 应用。NW.js 的前身是 node-webkit 。
特性:
使用 HTML5、CSS3、JS 和 WebGL 编写应用
完全支持 Node.js APIs 以及其 第三方模块
性能表现良好,Node 和 WebKit 运行在同一个线程,函数调用更直接,对象在同一个内存堆中,可直接引用
方便打包和分发
支持跨平台
演示程序:https://github.com/zcbenz/nw-sample-apps
示例:
index.html
<!DOCTYPE html> <html> <head> <title>Hello World!</title> </head> <body> <h1>Hello World!</h1> We are using node.js <script>document.write(process.version)</script>. </body> </html>
package.json:
{
"name": "nw-demo",
"main": "index.html"
}
运行:
$ /path/to/nw . (suppose the current directory contains 'package.json')
处理器虚拟化技术
邓志 / 电子工业出版社 / 2014-5-1 / CNY 109.00
《处理器虚拟化技术》针对在Intel处理器端的虚拟化技术(Intel Virtualization Technology for x86,即Intel VT-x)进行全面讲解。在Intel VT-x技术下实现了VMX(Virtual-Machine Extensions,虚拟机扩展)架构平台来支持对处理器的虚拟化管理。因此,VMX架构是Intel VT-x技术的核心。《处理器虚拟化技术》内容围绕V......一起来看看 《处理器虚拟化技术》 这本书的介绍吧!
