Node.js 的网页浏览扩展 Horseman
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://www.horsemanjs.org/
- 软件文档: https://github.com/johntitus/node-horseman
软件介绍
Horseman 是一个 Node.js 扩展模块,利用 PhantomJS 实现直接链式 API 和方便理解的控制流来实现无需图形化界面的网页浏览和数据获取。
示例代码:
var Horseman = require("node-horseman");
var horseman = new Horseman();
var projects = ['nodejs',
'jquery',
'tomcat',
'mysql',
'docker',
'j2cache',
'runjs',
'git'];
projects.forEach( function( p ){
var data = horseman
.open('http://www.oschina.net/p' + p)
.text('div.soft_collect_count');
console.log( p + ': ' + data );
});安装方法:
npm install node-horseman
Game Engine Architecture, Second Edition
Jason Gregory / A K Peters/CRC Press / 2014-8-15 / USD 69.95
A 2010 CHOICE outstanding academic title, this updated book covers the theory and practice of game engine software development. It explains practical concepts and techniques used by real game studios,......一起来看看 《Game Engine Architecture, Second Edition》 这本书的介绍吧!
