{"id":16237213,"url":"https://github.com/christopherpickering/eleventy-plugin-ebay-sync","last_synced_at":"2025-04-08T08:40:33.878Z","repository":{"id":103394884,"uuid":"583648544","full_name":"christopherpickering/eleventy-plugin-ebay-sync","owner":"christopherpickering","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-27T15:49:31.000Z","size":104,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-14T05:34:02.783Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/christopherpickering.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"christopherpickering","custom":"https://venmo.com/code?user_id=3118520086822912596\u0026created=1655827155"}},"created_at":"2022-12-30T12:49:14.000Z","updated_at":"2022-12-30T13:24:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"c321aef6-a0aa-4f7d-8196-91594fa5841b","html_url":"https://github.com/christopherpickering/eleventy-plugin-ebay-sync","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christopherpickering%2Feleventy-plugin-ebay-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christopherpickering%2Feleventy-plugin-ebay-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christopherpickering%2Feleventy-plugin-ebay-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christopherpickering%2Feleventy-plugin-ebay-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/christopherpickering","download_url":"https://codeload.github.com/christopherpickering/eleventy-plugin-ebay-sync/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247806258,"owners_count":20999307,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T13:34:58.456Z","updated_at":"2025-04-08T08:40:33.872Z","avatar_url":"https://github.com/christopherpickering.png","language":"JavaScript","funding_links":["https://github.com/sponsors/christopherpickering","https://venmo.com/code?user_id=3118520086822912596\u0026created=1655827155"],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eeleventy-plugin-ebay-sync\u003c/h1\u003e\n\n\u003ch4 align=\"center\"\u003eAn Eleventy \u003ca href=\"https://www.11ty.dev/docs/plugins/\"\u003eplugin\u003c/a\u003e to sync products from your 11ty store to your eBay store.\u003c/h4\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://twitter.com/intent/tweet?text=eleventy-plugin-ebay-sync%20%7C%20An%20Eleventy%20plugin%20to%20sync%20products%20from%20your%2011ty%20store%20to%20your%20eBay%20store.\u0026url=https://www.npmjs.com/package/eleventy-plugin-ebay-sync\u0026hashtags=eleventy,eleventy-plugin,github,eBay,eleventy-store,eBay-sync\"\u003e\u003cimg alt=\"tweet\" src=\"https://img.shields.io/twitter/url/http/shields.io.svg?style=social\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://www.npmjs.com/package/eleventy-plugin-ebay-sync\"\u003e\u003cimg alt=\"npm\" src=\"https://img.shields.io/npm/v/eleventy-plugin-ebay-sync\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## 🚀 Installation\n\nInstall from [npm](https://www.npmjs.com/package/eleventy-plugin-ebay-sync):\n\n```bash\nnpm i -D eleventy-plugin-ebay-sync\n```\n\n## 😎 What does it do?\n\nThis plugin will sync products between your 11ty store and your eBay store each time your site is built.\n\n## 🏃 Usage\n\nSimply add a few additional properties to your product yaml front matter.\n\nFirst, set some environment variables.\n\n```bash\nEBAYAPPID=\u003cget the app id from ebay\u003e\nEBAYAPPSECRET=\u003cget the app secret (clientId) from ebay\u003e\n\n# see https://developer.ebay.com/DevZone/merchandising/docs/Concepts/SiteIDToGlobalID.html\nEBAYSITEID=eBayApi.SiteId.EBAY_US # default\n\nEBAYMARKETPLACEID=eBayApi.MarketplaceId.EBAY_US # default\n\nEBAYLANGUAGE=eBayApi.Locale.en_US # default\n\nEBAYCONTENTLANGUAGE=eBayApi.ContentLanguage.en_US # default\n\nEBAYSANDBOX=false # default\n```\n\nNext, import in your `.eleventy.js`:\n\n```js\nconst ebaySync = require('eleventy-plugin-ebay-sync');\n\nmodule.exports = function (eleventyConfig) {\n  eleventyConfig.addPlugin(ebaySync);\n};\n```\n\nFor example, on `product_1.md`:\n\n```yaml\n---\nname: Product 1\nprice: $10\neBayPercentIncrease: 15 # increase base price by a % for ebay (optional)\neBayFixedIncrease: 10 # increase base price by a $ for eBay (optional)\neBayId: 1\n# other required attributes?\n```\n\n## ⚙️ Details\n\nThis plugin uses the [`ebay-api`](https://hendt.gitbook.io/ebay-api/) package to keep things in sync with eBay.\n\nCheck out the [samples](https://github.com/christopherpickering/eleventy-plugin-ebay-sync/tree/master/sample) site, or clone and run locally with `npm test`.\n\n## 🦘 Out in the Wild\n\n- [the Bible House](https://bible.house)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchristopherpickering%2Feleventy-plugin-ebay-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchristopherpickering%2Feleventy-plugin-ebay-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchristopherpickering%2Feleventy-plugin-ebay-sync/lists"}