├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib └── bootstrap.js ├── package.json ├── sql ├── plv8_call_handler.sql.js ├── plv8_call_validator.sql.js └── plv8_inline_handler.sql.js └── test ├── .eslintrc.json ├── index.js └── testmodule ├── index.js ├── package.json └── required.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/index.js -------------------------------------------------------------------------------- /lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/lib/bootstrap.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/package.json -------------------------------------------------------------------------------- /sql/plv8_call_handler.sql.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/plv8_call_validator.sql.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sql/plv8_inline_handler.sql.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "trails/test" 3 | } 4 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/test/index.js -------------------------------------------------------------------------------- /test/testmodule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/test/testmodule/index.js -------------------------------------------------------------------------------- /test/testmodule/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/test/testmodule/package.json -------------------------------------------------------------------------------- /test/testmodule/required.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langateam/node-plv8/HEAD/test/testmodule/required.js --------------------------------------------------------------------------------