├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── binding.gyp ├── examples └── autoload-namespace │ ├── autoload-namespace.js │ ├── autoload-test.js │ └── org │ └── w3c │ └── DOM │ ├── Document.js │ └── Document │ └── String │ └── Test.js ├── lib └── node-proxy.js ├── package.json ├── src ├── node-proxy.cc └── node-proxy.h └── test ├── mocha-test-notworking.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/binding.gyp -------------------------------------------------------------------------------- /examples/autoload-namespace/autoload-namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/examples/autoload-namespace/autoload-namespace.js -------------------------------------------------------------------------------- /examples/autoload-namespace/autoload-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/examples/autoload-namespace/autoload-test.js -------------------------------------------------------------------------------- /examples/autoload-namespace/org/w3c/DOM/Document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/examples/autoload-namespace/org/w3c/DOM/Document.js -------------------------------------------------------------------------------- /examples/autoload-namespace/org/w3c/DOM/Document/String/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/examples/autoload-namespace/org/w3c/DOM/Document/String/Test.js -------------------------------------------------------------------------------- /lib/node-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/lib/node-proxy.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/package.json -------------------------------------------------------------------------------- /src/node-proxy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/src/node-proxy.cc -------------------------------------------------------------------------------- /src/node-proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/src/node-proxy.h -------------------------------------------------------------------------------- /test/mocha-test-notworking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/test/mocha-test-notworking.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samshull/node-proxy/HEAD/test/test.js --------------------------------------------------------------------------------