A React library for FastComments
npm install fastcomments-react> A React library for FastComments, a fast and developer friendly comment system.
 
``bash`
npm install --save fastcomments-react
`bash`
yarn add fastcomments-react
You'll find examples for various use cases (dark mode, pagination, etc) in the examples folder. Each example can be setup with npm install and started with npm run start.
The FastCommentsCommentWidget component contains the live FastComments comment widget.
Replace "demo" below with your "tenantId" - available here in the FastComments admin area.
The widget supports a lot of options - see FastCommentsCommentWidgetConfig in src/index.tsx.
`tsx
import React, { Component } from 'react'
import {FastCommentsCommentWidget} from 'fastcomments-react'
class Example extends Component {
render() {
return
}
}
`
If you're in the EU, you'll want to tell the client widgets what region you are in. See examples/example-eu;
Otherwise, you do not have to define region.
The FastCommentsCommentCountWidget component contains the live FastComments comment count widget.
Replace "demo" below with your "tenantId" - available here in the FastComments admin area.
See FastCommentsCommentCountConfig in src/index.tsx for the supported configuration options.
`tsx
import React, { Component } from 'react'
import {FastCommentsCommentCountWidget} from 'fastcomments-react'
class Example extends Component {
render() {
return
}
}
``
For a completely native implementation of FastComments, see fastcomments-react-native-sdk.
For a React Native wrapper of this library, using a webview, see fastcomments-react-native.
MIT © winrid