├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── README.md ├── lib └── index.js ├── package.json └── test └── agent.js /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanongil/node-service-agent/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | ** 2 | !/lib/** -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanongil/node-service-agent/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanongil/node-service-agent/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanongil/node-service-agent/HEAD/package.json -------------------------------------------------------------------------------- /test/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanongil/node-service-agent/HEAD/test/agent.js --------------------------------------------------------------------------------