Popularity
1.5
Growing
Activity
0.0
Stable
41
1
11
Monthly Downloads: 0
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-joyride
Create walkthroughs and guided tours for your ReactJS apps. Now with standalone tooltips!. -
react-resizable-and-movable
Resizable and movable component for React. -
react-resizable-box
Resizable component for React. #reactjs. -
react-json-tree
React JSON Viewer Component, Extracted from redux-devtools. -
react-facebook
Facebook components like a Login button, Like, Share, Comments, Page or Embedded Post. -
react-avatar
Universal React avatar component makes it possible to generate avatars based on user information. -
react-images-uploader
React.js component for uploading images to the server. -
react-svg-buttons
Configurable animated SVG buttons for react. -
react-file-reader-input
React file input component for complete control over styling and abstraction from file reading. -
material-color-hash
Hash strings to Material UI colors. -
react-avatar-generator
Allows users to create random kaleidoscopes to be used as avatars. -
react-filter-control
The React filterbuilder component for building the filter criteria in the UI. -
react-headings
Auto-increment your HTML headings (h1, h2, etc.) for improved accessibility and SEO, no matter your component structure, while you keep full control of what's rendered. -
react-color-scroll
Change and blend new colors on the background as you scroll. -
react-pagespeed-score
A React component for display a dial-type chart of PageSpeed Insights.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
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.