New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-social-share

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-social-share

React social buttons, Facebook, Twitter and Pinterest and more

latest
Source
npmnpm
Version
0.0.6
Version published
Maintainers
2
Created
Source

react-social-share

Simple React components for social (Facebook, Twitter and Pinterest and more) buttons and counts.

Install

npm install react-social --save

Example

import { FacebookButton, FacebookCount } from "react-social";

class App {
  render {
    let url = "https://github.com";

    return (
      <FacebookButton url={url}>
        <FacebookCount url={url} />
        {" Share " + url}
      </FacebookButton>
    );
  }
}

Count (FacebookCount, TwitterCount, PinterestCount, VKontakteCount) API

Props

element

Change the element the component renders into, default is span.

url

The url you want to get the count of, default is window.location.

Methods

getCount()

Return the social count.

Button (FacebookButton, TwitterButton, PinterestButton, VKontakteButton) API

Props

element

Change the element the component renders into, default is button.

url

The url you want to share, default is window.location.

message (only TwitterButton and FacebookButton)

A message that's prepended before the url, works only with FacebookButton and TwitterButton.

media (required for Pinterest)

Url of an image, is required for PinterestButton and only works with PinterestButton.

Styles

There are no styles included, the components pass all their props down to their element like className and style so you can easily style them yourself.

Notice

When rendered server side all counts will be 0 since they depend on jsonp.

Contributors

  • Ola Holmström (@olahol)
  • Alexandr Sugak (@AlexSugak)
  • Jon Principe (@jprincipe)

MIT Licensed

Keywords

react

FAQs

Package last updated on 07 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts