{"id":19568287,"url":"https://github.com/enginkizil/feedek","last_synced_at":"2025-04-06T20:09:41.361Z","repository":{"id":6636832,"uuid":"7880851","full_name":"enginkizil/FeedEk","owner":"enginkizil","description":"FeedEk jQuery RSS/ATOM Feed Plugin","archived":false,"fork":false,"pushed_at":"2022-02-03T14:30:43.000Z","size":72,"stargazers_count":207,"open_issues_count":18,"forks_count":105,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-04-06T20:09:33.355Z","etag":null,"topics":["atom","feed","feed-reader","javascript","jquery","jquery-plugin","rss","rss-reader"],"latest_commit_sha":null,"homepage":"https://jquery-plugins.net/FeedEk/FeedEk.html","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/enginkizil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-01-28T22:50:30.000Z","updated_at":"2024-10-29T18:55:25.000Z","dependencies_parsed_at":"2022-08-31T00:30:48.949Z","dependency_job_id":null,"html_url":"https://github.com/enginkizil/FeedEk","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/enginkizil%2FFeedEk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/enginkizil%2FFeedEk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/enginkizil%2FFeedEk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/enginkizil%2FFeedEk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/enginkizil","download_url":"https://codeload.github.com/enginkizil/FeedEk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247543589,"owners_count":20955865,"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":["atom","feed","feed-reader","javascript","jquery","jquery-plugin","rss","rss-reader"],"created_at":"2024-11-11T06:03:15.340Z","updated_at":"2025-04-06T20:09:41.343Z","avatar_url":"https://github.com/enginkizil.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"FeedEk jQuery RSS/ATOM Feed Plugin\n======\n\n**FeedEk** is a jQuery plugin for parsing and displaying RSS and Atom feeds. You can obtain feeds easily from any domain. No need for server-side scripts. [Feed API](https://jquery-plugins.net/feed-api) is used for fetching RSS/Atom feed data.\n\n[Plugin Homepage](https://jquery-plugins.net/FeedEk/FeedEk.html)\n\n[Demo](https://jquery-plugins.net/FeedEk/FeedEk_demo.html)\n\n[Feed API Docs](https://jquery-plugins.net/feed-api)\n\n \n## Usage\n1- Include jQuery and FeedEk plugin scripts into your page.\n```javascript\n\u003cscript src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js\"\u003e\u003c/script\u003e\n\u003cscript type=\"text/javascript\" src=\"FeedEk.min.js\"\u003e\u003c/script\u003e\n```\n2- Add a placeholder for the plugin to your page.\n```html\n\u003cdiv id=\"divFeed\"\u003e\u003c/div\u003e\n```\n3- Call the plugin.\n\n**- Basic**\n```javascript\n$('#divFeed').FeedEk({\n    FeedUrl : 'https://jquery-plugins.net/rss',\n});\n```\n**- Multiple Feed Url**\n```javascript\n$('#divFeed').FeedEk({\n    FeedUrl : ['https://jquery-plugins.net/rss','http://rss.cnn.com/rss/cnn_topstories.rss']\n});\n```\n**- With Options**\n```javascript\n$('#divFeed').FeedEk({\n    FeedUrl : 'https://jquery-plugins.net/rss',\n    MaxCount : 5,\n    ShowDesc : true,\n    ShowPubDate:true,\n    DescCharacterLimit:100,\n    TitleLinkTarget:'_blank',\n    DateFormat : 'MM/dd/yyyy',\n    DateFormatLang : 'en',\n    Offset: 5,\n    ShowAuthor: true,\n    AuthorLabel:\"Author:\",\n    Success: function (feedItems) { },\n    Error: function (error) { }\n});\n```\n\n## Options\n\n- **FeedUrl**\n  Your Feed Url and it's required\n- **MaxCount**\n  Feed Item Count. Default is `5`\n- **ShowDesc**\n  Option to show Feed Item Description. Default is `true`\n- **ShowPubDate**\n  Option to show Feed Item Publish Date. Default is `true`\n- **DescCharacterLimit**\n  Feed Description Characters Limit Count. Default is no limit\n- **TitleLinkTarget**\n  Option for Feed Title Link Target. Default is `_blank`\n- **DateFormat**\n  Option for Feed Publish Date Format. Default is none\n- **DateFormatLang**\n  Option for Feed Publish Date Format Language for localization. Default is `en`\n- **Offset**\n  Offset option for pagination. Default is `0`\n- **ShowAuthor**\n  Option to show Author of Feed Item. Default is `false`\n- **AuthorLabel**\n  Option to set title of author label. Default is `Author:`. ShowAuthor option must be true to set AuthorLabel.\n- **Success**\n  Callback to manipulate the DOM element wich contains the Feed Items after the load.\n- **Error**\n  Callback when error occurs during fetching feeds.\n\n## Demo\n\n[Plugin Homepage](https://jquery-plugins.net/FeedEk/FeedEk.html)\n\n[Demo](https://jquery-plugins.net/FeedEk/FeedEk_demo.html) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenginkizil%2Ffeedek","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fenginkizil%2Ffeedek","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenginkizil%2Ffeedek/lists"}