├── .gitignore ├── .jshintrc ├── LICENSE.txt ├── README.md ├── example ├── basic.js └── webroot │ ├── img │ └── paperboy.jpg │ └── index.html ├── index.js ├── lib └── paperboy.js ├── package.json └── seed.yml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.swp 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/README.md -------------------------------------------------------------------------------- /example/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/example/basic.js -------------------------------------------------------------------------------- /example/webroot/img/paperboy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/example/webroot/img/paperboy.jpg -------------------------------------------------------------------------------- /example/webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/example/webroot/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/paperboy'); -------------------------------------------------------------------------------- /lib/paperboy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/lib/paperboy.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/package.json -------------------------------------------------------------------------------- /seed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixge/node-paperboy/HEAD/seed.yml --------------------------------------------------------------------------------