Popularity
1.5
Stable
Activity
0.0
Stable
41
2
9
Programming language: JavaScript
License: MIT License
react-autolink alternatives and similar libraries
Based on the "Miscellaneous" category.
Alternatively, view react-autolink alternatives based on common mentions on social networks and blogs.
-
react-facebook
Facebook components like a Login button, Like, Share, Chat, Comments, Page or Embedded Post -
react-avatar
Universal avatar makes it possible to fetch/generate an avatar based on the information you have about that user. -
react-file-reader-input
React file input component for complete control over styling and abstraction from file reading. -
react-swipe-to-delete-ios
A simple React component to reproduce the way iOS deletes an item in a list -
react-headings
⚛ Auto-increment your HTML headings (h1, h2, etc.) for improved accessibility and SEO. -
react-advanced-news-ticker
A powerful, flexible, lightweight and animated vertical news ticker component for React. -
@restpace/schema-form
A React component package for generating forms based on (almost) the full power of JSON Schema -
react-pulse-text
The usePulseText hook creates an animated text effect that makes string content progressively appear or disappear following a specified pattern. -
react-pagespeed-score
DISCONTINUED. A React component for display a dial-type chart of PageSpeed Insights.
SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.
Promo
surveyjs.io

Do you think we are missing an alternative of react-autolink or a related project?
README
react-autolink
An autolink mixin for React
Install
npm i react-autolink
# or
bower i react-autolink # `window.ReactAutolink` is available
Usage
let App = React.createClass({
getDefaultProps() {
return {
text: "foo bar baz http://example.org bar",
};
},
mixins: [
ReactAutolink
],
render() {
return (
<div>
<span>{ this.autolink(this.props.text) }</span>
<span>{ this.autolink(this.props.text, { target: "_blank", rel: "nofollow" }) }</span>
<span>{ ReactAutolink.autolink(this.props.text) }</span> // or can be used no mixin way
</div>
);
}
});
Tips
In tandem with react-emoji
Development
Dependency
$ npm i
Run
$ npm start # => http://0.0.0.0:8080
Test
$ npm test
License
MIT
*Note that all licence references and agreements mentioned in the react-autolink README section above
are relevant to that project's source code only.