Skip to content

Commit bf5c509

Browse files
committed
refactor: rename to unread
1 parent 1d96094 commit bf5c509

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.all-contributorsrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"projectName": "feedify",
2+
"projectName": "unread",
33
"projectOwner": "Ahmed T. Ali",
44
"repoType": "github",
55
"repoHost": "https://github.com",

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# Feedify
1+
# Unread
22

3-
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors) [![Build](https://img.shields.io/travis/z0al/feedify.svg)](https://travis-ci.org/z0al/feedify) [![Bundlephobia](https://img.shields.io/bundlephobia/minzip/feedify.svg)](https://bundlephobia.com/result?p=feedify)
3+
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors) [![Build](https://img.shields.io/travis/z0al/unread.svg)](https://travis-ci.org/z0al/unread) [![Bundlephobia](https://img.shields.io/bundlephobia/minzip/unread.svg)](https://bundlephobia.com/result?p=unread)
44

5-
[![NPM](https://nodei.co/npm/feedify.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/feedify/)
5+
[![NPM](https://nodei.co/npm/unread.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/unread/)
66

77
A package for parsing RSS 2.0, Atom 1.0.
88

99
## Installation
1010

1111
```sh
12-
npm add feedify
12+
npm add unread
1313
```
1414

1515
## Usage
1616

1717
### Simple
1818

1919
```javascript
20-
import { parse } from 'feedify';
20+
import { parse } from 'unread';
2121

2222
fetch('https://overreacted.io/rss.xml')
2323
.then(resp => {
@@ -37,7 +37,7 @@ fetch('https://overreacted.io/rss.xml')
3737
If you want more control you can use parsers directly. E.g.:
3838

3939
```javascript
40-
import { RSSParser } from 'feedify';
40+
import { RSSParser } from 'unread';
4141

4242
const parser = new RSSParser();
4343

@@ -58,7 +58,7 @@ console.log(parser.feed());
5858
### Error handling
5959

6060
```javascript
61-
import { parse } from 'feedify';
61+
import { parse } from 'unread';
6262

6363
const text = 'borken feed';
6464

@@ -85,7 +85,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
8585

8686
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
8787
<!-- prettier-ignore -->
88-
<table><tr><td align="center"><a href="https://ahmed.sd"><img src="https://avatars1.githubusercontent.com/u/12673605?v=4" width="100px;" alt="Ahmed T. Ali"/><br /><sub><b>Ahmed T. Ali</b></sub></a><br /><a href="https://github.com/Ahmed T. Ali/feedify/commits?author=z0al" title="Code">💻</a> <a href="https://github.com/Ahmed T. Ali/feedify/commits?author=z0al" title="Documentation">📖</a> <a href="#maintenance-z0al" title="Maintenance">🚧</a> <a href="https://github.com/Ahmed T. Ali/feedify/commits?author=z0al" title="Tests">⚠️</a></td></tr></table>
88+
<table><tr><td align="center"><a href="https://ahmed.sd"><img src="https://avatars1.githubusercontent.com/u/12673605?v=4" width="100px;" alt="Ahmed T. Ali"/><br /><sub><b>Ahmed T. Ali</b></sub></a><br /><a href="https://github.com/Ahmed T. Ali/unread/commits?author=z0al" title="Code">💻</a> <a href="https://github.com/Ahmed T. Ali/unread/commits?author=z0al" title="Documentation">📖</a> <a href="#maintenance-z0al" title="Maintenance">🚧</a> <a href="https://github.com/Ahmed T. Ali/unread/commits?author=z0al" title="Tests">⚠️</a></td></tr></table>
8989

9090
<!-- ALL-CONTRIBUTORS-LIST:END -->
9191

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "feedify",
2+
"name": "unread",
33
"version": "0.0.0-semantically-released",
44
"description": "A package for parsing RSS and Atom feeds",
55
"keywords": [
@@ -10,7 +10,7 @@
1010
"syndication",
1111
"xml"
1212
],
13-
"repository": "z0al/feedify",
13+
"repository": "z0al/unread",
1414
"license": "MIT",
1515
"author": "Ahmed T. Ali <[email protected]>",
1616
"files": [

0 commit comments

Comments
 (0)