mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 15:31:42 +00:00
Update catproxy.js
This commit is contained in:
parent
145e22de21
commit
cde58c21a4
|
@ -1,11 +1,13 @@
|
|||
// catproxy.js
|
||||
// Caterpillar Proxy Integration for WelsonJS framework
|
||||
// https://github.com/gnh1201/welsonjs
|
||||
// https://github.com/gnh1201/caterpillar
|
||||
var JSONRPC2 = require("lib/jsonrpc2");
|
||||
|
||||
function CatProxyClient(url) {
|
||||
var env = {"target": url, "method": ""};
|
||||
var env = {
|
||||
"target": "http://localhost:5555/jsonrpc2", // Check this: https://github.com/gnh1201/caterpillar
|
||||
"method": ""
|
||||
};
|
||||
|
||||
this.set_env = function(k, v) {
|
||||
env[k] = v || null;
|
||||
|
@ -54,6 +56,10 @@ function CatProxyClient(url) {
|
|||
|
||||
return result;
|
||||
}
|
||||
|
||||
if (typeof url !== "undefined") {
|
||||
this.set_env(url);
|
||||
}
|
||||
}
|
||||
|
||||
function create(url) {
|
||||
|
@ -63,7 +69,7 @@ function create(url) {
|
|||
exports.create = create;
|
||||
exports.CatProxyClient = CatProxyClient;
|
||||
|
||||
exports.VERSIONINFO = "Caterpillar Proxy Integration (caterpillar.js) version 0.1.3";
|
||||
exports.VERSIONINFO = "Caterpillar Proxy Integration (caterpillar.js) version 0.1.4";
|
||||
exports.AUTHOR = "abuse@catswords.net";
|
||||
exports.global = global;
|
||||
exports.require = global.require;
|
||||
|
|
Loading…
Reference in New Issue
Block a user