twosigma/node-pac-resolver

Name: node-pac-resolver

Owner: Two Sigma

Description: Generates an asynchronous resolver function from a PAC file

Created: 2015-11-16 23:09:58.0

Updated: 2015-11-16 23:09:59.0

Pushed: 2015-11-16 23:14:54.0

Homepage: null

Size: 48

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

pac-resolver

Generates an asynchronous resolver function from a PAC file

Build Status

This module accepts a JavaScript String of code, which is meant to be a PAC proxy file, and returns a generated asynchronous FindProxyForURL() function.

Installation

Install with npm:

m install pac-resolver
Example

Given the PAC proxy file named proxy.pac:

tion FindProxyForURL(url, host) {
 (isInNet(myIpAddress(), "10.1.10.0", "255.255.255.0")) {
return "PROXY 1.2.3.4:8080";
else {
return "DIRECT";


You can consume this PAC file with pac-resolver like so:

fs = require('fs');
pac = require('pac-resolver');

FindProxyForURL = pac(fs.readFileSync('proxy.pac', 'utf8'));

ProxyForURL('http://foo.com/', 'foo.com', function (err, res) {
 (err) throw err;
nsole.log(res);
// ? "DIRECT"

API
pac(String jsStr[, Object options]) ? Function

Returns an asynchronous FindProxyForURL() function based off of the given JS string jsStr PAC proxy file. An optional options object may be passed in which respects the following options:

License

(The MIT License)

Copyright (c) 2013 Nathan Rajlich <nathan@tootallnate.net>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.