# twitter-rss-noauth

> get a Twitter user timeline as an RSS feed without Twitter API auth

Latest version **1.0.1** (published 2016-08-12) · 0 weekly downloads

## Install

```sh
npm install twitter-rss-noauth
pnpm add twitter-rss-noauth
yarn add twitter-rss-noauth
bun add twitter-rss-noauth
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-08-12 |
| First published | 2015-10-25 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | noffle, sww |

## Links

- npm: https://www.npmjs.com/package/twitter-rss-noauth
- Repository: https://github.com/noffle/twitter-rss-noauth
- Homepage: https://github.com/noffle/twitter-rss-noauth#readme
- Issues: https://github.com/noffle/twitter-rss-noauth/issues
- npm.io page: https://npm.io/package/twitter-rss-noauth

## Dependencies (2)

- [feed](https://npm.io/package/feed.md) ^0.2.6
- [latest-tweets](https://npm.io/package/latest-tweets.md) ^1.0.0

## Recent versions

- 1.0.1 (latest) — 2016-08-12
- 1.0.0 — 2016-08-12
- 0.3.0 — 2016-08-12
- 0.2.3 — 2015-10-29
- 0.2.2 — 2015-10-26
- 0.2.1 — 2015-10-25
- 0.2.0 — 2015-10-25
- 0.1.1 — 2015-10-25
- 0.1.0 — 2015-10-25

## README

# twitter-rss-noauth

> retrieves a Twitter timeline and outputs an RSS feed -- without Twitter API
> authentication!


## background

Like [rss-twitter](https://www.npmjs.com/package/rss-twitter), but without using
the restrictive Twitter API! Huzzah for open access without authentication!


## installation

```sh
$ npm i twitter-rss-noauth
```

## usage

```js
var twitterRss = require('twitter-rss-noauth')

twitterRss('noffle', function (err, feed) {
  // output an RSS 2.0 feed to stdout
  console.log(feed)
})
```


## api

```js
var twitterRss = require('twitter-rss-noauth')
```

### twitterRss(username, cb(err, feed))

Specify a `username` of the timeline you want. The callback `cb` will contain an
optional error as its first parameter, and a string containing the RSS feed as
its second parameter.


## license

MIT

---
_Source: https://npm.io/package/twitter-rss-noauth · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
