├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── lib └── s3.js ├── package.json └── test ├── fixtures ├── pdf sample.pdf └── s3.png └── s3.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvonlehman/s3-proxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvonlehman/s3-proxy/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/s3.js'); 2 | -------------------------------------------------------------------------------- /lib/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvonlehman/s3-proxy/HEAD/lib/s3.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvonlehman/s3-proxy/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/pdf sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvonlehman/s3-proxy/HEAD/test/fixtures/pdf sample.pdf -------------------------------------------------------------------------------- /test/fixtures/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvonlehman/s3-proxy/HEAD/test/fixtures/s3.png -------------------------------------------------------------------------------- /test/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvonlehman/s3-proxy/HEAD/test/s3.js --------------------------------------------------------------------------------