├── .gitignore ├── LICENSE ├── README.md ├── example └── game-server │ ├── app.js │ ├── app │ ├── filters │ │ └── log.js │ └── servers │ │ └── gamehttp │ │ └── route │ │ └── testRoute.js │ ├── config │ ├── adminServer.json │ ├── adminUser.json │ ├── clientProtos.json │ ├── dictionary.json │ ├── http.json │ ├── log4js.json │ ├── master.json │ ├── serverProtos.json │ └── servers.json │ └── package.json ├── index.js ├── lib ├── components │ └── http.js └── events │ └── http.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *~ 3 | *.log 4 | ^. 5 | *.pem -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/README.md -------------------------------------------------------------------------------- /example/game-server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/app.js -------------------------------------------------------------------------------- /example/game-server/app/filters/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/app/filters/log.js -------------------------------------------------------------------------------- /example/game-server/app/servers/gamehttp/route/testRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/app/servers/gamehttp/route/testRoute.js -------------------------------------------------------------------------------- /example/game-server/config/adminServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/config/adminServer.json -------------------------------------------------------------------------------- /example/game-server/config/adminUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/config/adminUser.json -------------------------------------------------------------------------------- /example/game-server/config/clientProtos.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/game-server/config/dictionary.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/game-server/config/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/config/http.json -------------------------------------------------------------------------------- /example/game-server/config/log4js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/config/log4js.json -------------------------------------------------------------------------------- /example/game-server/config/master.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/config/master.json -------------------------------------------------------------------------------- /example/game-server/config/serverProtos.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/game-server/config/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/config/servers.json -------------------------------------------------------------------------------- /example/game-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/example/game-server/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/index.js -------------------------------------------------------------------------------- /lib/components/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/lib/components/http.js -------------------------------------------------------------------------------- /lib/events/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/lib/events/http.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pipi32167/pomelo-http-plugin/HEAD/package.json --------------------------------------------------------------------------------