├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bin └── serverhere ├── index.js ├── package.json └── template ├── index.html └── server /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /test 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/serverhere/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/serverhere/HEAD/README.md -------------------------------------------------------------------------------- /bin/serverhere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/serverhere/HEAD/bin/serverhere -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/serverhere/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/serverhere/HEAD/package.json -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/serverhere/HEAD/template/index.html -------------------------------------------------------------------------------- /template/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switer/serverhere/HEAD/template/server --------------------------------------------------------------------------------