├── .DS_Store ├── .gitignore ├── README.md ├── config ├── default.json └── template.html ├── controllers ├── mail.js ├── parse.js └── scrape.js ├── main.js ├── package.json ├── pastItems.json └── scrape.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/README.md -------------------------------------------------------------------------------- /config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/config/default.json -------------------------------------------------------------------------------- /config/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/config/template.html -------------------------------------------------------------------------------- /controllers/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/controllers/mail.js -------------------------------------------------------------------------------- /controllers/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/controllers/parse.js -------------------------------------------------------------------------------- /controllers/scrape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/controllers/scrape.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/package.json -------------------------------------------------------------------------------- /pastItems.json: -------------------------------------------------------------------------------- 1 | {"pastItems": ["12345678910"]} -------------------------------------------------------------------------------- /scrape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovdixon/marketplace-magpie/HEAD/scrape.js --------------------------------------------------------------------------------