├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── README.md ├── index.js ├── package.json ├── test ├── index.spec.js └── template.ejs └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/package.json -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/template.ejs: -------------------------------------------------------------------------------- 1 |

Hello <%= name%>

-------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lykmapipo/mock-express-response/HEAD/utils.js --------------------------------------------------------------------------------