{"id":13658954,"url":"https://github.com/53seven/node-blindparser","last_synced_at":"2025-07-02T07:04:06.107Z","repository":{"id":2162268,"uuid":"3108086","full_name":"53seven/node-blindparser","owner":"53seven","description":"blindparser is an all purpose RSS/ATOM feed parser that parses feeds into a common format so that you do not have to care if they are RSS or ATOM feeds","archived":false,"fork":false,"pushed_at":"2019-09-16T20:57:50.000Z","size":57,"stargazers_count":31,"open_issues_count":1,"forks_count":12,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-18T14:44:00.253Z","etag":null,"topics":["atom-feed-parser","javascript","nodejs","rss-feed-parser"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/53seven.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-01-05T05:35:34.000Z","updated_at":"2019-06-16T17:02:24.000Z","dependencies_parsed_at":"2022-09-15T09:51:53.842Z","dependency_job_id":null,"html_url":"https://github.com/53seven/node-blindparser","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/53seven/node-blindparser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/53seven%2Fnode-blindparser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/53seven%2Fnode-blindparser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/53seven%2Fnode-blindparser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/53seven%2Fnode-blindparser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/53seven","download_url":"https://codeload.github.com/53seven/node-blindparser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/53seven%2Fnode-blindparser/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260786316,"owners_count":23062901,"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-parser","javascript","nodejs","rss-feed-parser"],"created_at":"2024-08-02T05:01:04.066Z","updated_at":"2025-07-02T07:04:06.080Z","avatar_url":"https://github.com/53seven.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"node-blindparser\n----------------\n[![build status](https://secure.travis-ci.org/53seven/node-blindparser.svg)](http://travis-ci.org/53seven/node-blindparser)\n\nblindparser is a RSS/ATOM feed parser that returns the requested feed urls in a json object that is formatted so that you will not have to worry (much) about the format of the requested feed.\n\nMotivation\n----------\n\nRSS and ATOM feeds are both trying to deliver similar content, but are different enough with their structure to be aggravating. The purpose of blindparser is to allow for the important parts of the feeds (article titles, links, etc) to be returned in a standard format, but to also return the rest of the feed in a reasonable way.\n\nInstalling\n----------\n\n```\nnpm install blindparser\n```\n\nUsage\n-----\n\nUsing blind parser is easy, just call:\n\n```js\nvar parser = require('blindparser');\n\n// with no options\nparser.parseURL('http://rss.cnn.com/rss/cnn_topstories.rss', function(err, out){\n\tconsole.log(out);\n});\n\nvar options = {\n\tfollowRedirect: false,\n\ttimeout: 1000\n};\n//rss feeds\nparser.parseURL('http://rss.cnn.com/rss/cnn_topstories.rss', options, function(err, out){\n\tconsole.log(out);\n});\n//atom feeds\nparser.parseURL('http://www.blogger.com/feeds/10861780/posts/default', options, function(err, out){\n\tconsole.log(out);\n});\n```\n\nOptions\n-------\n\nThe options hash is passed through to [request](https://github.com/mikeal/request) for fetching a given url.\n\nOutput\n------\n\nThe point of `blindparser` is to try and hide the format of the originally requested feed. Thus RSS and ATOM feeds are returned in a common format. Similar fields (pubDate vs update) will be mapped to the same field in the output.\n\nThe 'minimal' output format is:\n\n```js\n{\n\ttype:\"rss\" or \"atom\"\n\tmetadata:{\n\t\ttitle: Title of the feed\n\t\tdesc: description or subtitle\n\t\turl: url of the feed\n\t\tupdate: pubDate or update time of the feed\n\t},\n\titems:[\n\t\t{\n\t\t\ttitle: Title of article\n\t\t\tdesc:\tDescription or content of article\n\t\t\tlink: Link to article\n\t\t\tdate: Time article was published\n\t\t}...\n\t]\n```\n\nTests\n-----\n\nTests for blindparser can be run using the command:\n\n```\nnpm test\n```\n\nMake sure that you machine has an internet connection before running the\ntests.\n\nLicense\n-------\nCopyright (c) 2016 53seven, LLC\n\nOriginally Created by Kiernan McGowan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F53seven%2Fnode-blindparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F53seven%2Fnode-blindparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F53seven%2Fnode-blindparser/lists"}