├── .editorconfig ├── .gitignore ├── .jsbeautifyrc ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── Procfile ├── README.md ├── bin └── test-server ├── lib └── index.js ├── package.json ├── public └── css │ └── style.css ├── templates ├── helpers │ ├── collapse.js │ ├── colorFromMethod.js │ ├── encodeUri.js │ ├── exists.js │ ├── join.js │ ├── json.js │ ├── multipleIf.js │ ├── name.js │ └── type.js ├── index.html ├── route.html ├── type-header.html └── type.html └── test ├── custom-test-files ├── css │ └── style.css └── templates │ ├── index.html │ └── route.html ├── index.js └── routes ├── default.js ├── withauth.js └── withoutpost.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node bin/test-server 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/README.md -------------------------------------------------------------------------------- /bin/test-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/bin/test-server -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/package.json -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/public/css/style.css -------------------------------------------------------------------------------- /templates/helpers/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/collapse.js -------------------------------------------------------------------------------- /templates/helpers/colorFromMethod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/colorFromMethod.js -------------------------------------------------------------------------------- /templates/helpers/encodeUri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/encodeUri.js -------------------------------------------------------------------------------- /templates/helpers/exists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/exists.js -------------------------------------------------------------------------------- /templates/helpers/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/join.js -------------------------------------------------------------------------------- /templates/helpers/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/json.js -------------------------------------------------------------------------------- /templates/helpers/multipleIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/multipleIf.js -------------------------------------------------------------------------------- /templates/helpers/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/name.js -------------------------------------------------------------------------------- /templates/helpers/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/helpers/type.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/route.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/route.html -------------------------------------------------------------------------------- /templates/type-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/type-header.html -------------------------------------------------------------------------------- /templates/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/templates/type.html -------------------------------------------------------------------------------- /test/custom-test-files/css/style.css: -------------------------------------------------------------------------------- 1 | .cssTest {} 2 | -------------------------------------------------------------------------------- /test/custom-test-files/templates/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/custom-test-files/templates/route.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/test/index.js -------------------------------------------------------------------------------- /test/routes/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/test/routes/default.js -------------------------------------------------------------------------------- /test/routes/withauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/test/routes/withauth.js -------------------------------------------------------------------------------- /test/routes/withoutpost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outmoded/lout/HEAD/test/routes/withoutpost.js --------------------------------------------------------------------------------