├── .gitignore ├── README.md ├── bin └── secure-localhost ├── package.json └── src ├── approve.js ├── create.js ├── index.js ├── localhost.cnf └── spawn_util.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | certs 3 | test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnode/secure-localhost/HEAD/README.md -------------------------------------------------------------------------------- /bin/secure-localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnode/secure-localhost/HEAD/bin/secure-localhost -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnode/secure-localhost/HEAD/package.json -------------------------------------------------------------------------------- /src/approve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnode/secure-localhost/HEAD/src/approve.js -------------------------------------------------------------------------------- /src/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnode/secure-localhost/HEAD/src/create.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnode/secure-localhost/HEAD/src/index.js -------------------------------------------------------------------------------- /src/localhost.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnode/secure-localhost/HEAD/src/localhost.cnf -------------------------------------------------------------------------------- /src/spawn_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willnode/secure-localhost/HEAD/src/spawn_util.js --------------------------------------------------------------------------------