- 授权协议: AGPL
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/nfriedly/node-unblocker
- 软件文档: https://www.npmjs.com/package/unblocker
- 官方下载: https://github.com/nfriedly/node-unblocker
软件介绍
Unblocker 最初是一个 Web 代理,用于回避互联网审查,类似于 CGIproxy / PHProxy / Glype ,但是在用 Node.js 写后, 它已经变成了用于代理和重写远程网页的通用库。
所有的数据都被处理,并且在不必要的缓冲的情况下被中继到客户端,使得 Unblocker 成为最快的网络代理之一。
使用示例:
npm install --save unblocker
Unblocker 导出与 Express 兼容的 API
var express = require('express')
var Unblocker = require('unblocker');
var app = express();
// this must be one of the first app.use() calls and must not be on a subdirectory to work properly
app.use(new Unblocker({prefix: '/proxy/'}));
app.get('/', function(req, res) {
//...
});若是不想用 express 也很简单,请参见 examples / simple / server.js 示例。
Big Java Late Objects
Horstmann, Cay S. / 2012-2 / 896.00元
The introductory programming course is difficult. Many students fail to succeed or have trouble in the course because they don't understand the material and do not practice programming sufficiently. ......一起来看看 《Big Java Late Objects》 这本书的介绍吧!
