# react-disqus-thread

> React Disqus thread component

Latest version **0.4.0** (published 2016-05-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-disqus-thread
pnpm add react-disqus-thread
yarn add react-disqus-thread
bun add react-disqus-thread
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.4.0 |
| Published | 2016-05-31 |
| First published | 2014-10-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 178 |
| Author | Matt Zabriskie |
| Maintainers | mzabriskie |
| Keywords | disqus, react, react-component |

## Links

- npm: https://www.npmjs.com/package/react-disqus-thread
- Repository: https://github.com/mzabriskie/react-disqus-thread
- Issues: https://github.com/mzabriskie/react-disqus-thread/issues
- npm.io page: https://npm.io/package/react-disqus-thread

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.4.0 (latest) — 2016-05-31
- 0.3.1 — 2015-10-23
- 0.3.0 — 2015-10-22
- 0.2.2 — 2015-06-11
- 0.2.1 — 2015-06-11
- 0.2.0 — 2015-06-11
- 0.1.0 — 2014-10-21

## README

# react-disqus-thread

React Disqus thread component

## Installing

```bash
$ npm install react-disqus-thread
# or
$ bower install react-disqus-thread
```

## Demo

http://mzabriskie.github.io/react-disqus-thread/example

## Example

```js
var React = require('react');
var ReactDisqusThread = require('react-disqus-thread');

var App = createClass({
	
	handleNewComment: function(comment) {
		console.log(comment.text);
	}

	render: function () {
		return (
			<ReactDisqusThread
				shortname="example"
				identifier="something-unique-12345"
				title="Example Thread"
				url="http://www.example.com/example-thread"
				category_id="123456"
				onNewComment={this.handleNewComment}/>
		);
	}
});

React.render(<App/>, document.getElementById('container'));
```

## License

MIT

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