Update catproxy.js

This commit is contained in:
Namhyeon Go 2024-07-04 14:30:12 +09:00 committed by GitHub
parent 145e22de21
commit cde58c21a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;