react-web-share
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

react-web-share

Tiny Web Share API wrapper with fallback for unsupported browsers

GitHub Actions Status NPM gzip

Edit react-web-share

💡 most browsers restricts web share api only to https websites

Features

  • 🍃 Only ~6kb gzipped and no external dependencies
  • 🌀 Uses React Portal
  • Written w/ TypeScript

🔧 Installation

npm i react-web-share    # npm
yarn add react-web-share # yarn

Preview

Mobile

Mobile Preview

Desktop

Desktop Preview

📦 Example

import React, { useState } from "react";
import { RWebShare } from "react-web-share";

const Example = () => {
  return (
    <div>
      <RWebShare
        data={{
          text: "Like humans, flamingos make friends for life",
          url: "https://on.natgeo.com/2zHaNup",
          title: "Flamingos",
        }}
        onClick={() => console.log("shared successfully!")}
      >
        <button>Share 🔗</button>
      </RWebShare>
    </div>
  );
};

export default Example;

👀 Props

Prop Description Type Default
data Share Object {text, url, title} {text: "", url: currentURL, title: "Share"}
sites sites string[] all platforms (see list below for key list)
closeText translate close string localise close text
onClick callback on sucessful share
disableNative disables native share boolean false

🌎 Sites

  • facebook
  • twitter
  • whatsapp
  • reddit
  • telegram
  • linkedin
  • mail
  • copy (Copy to Clipboard)
  • vk
  • okru

📜 License

MIT © harshzalavadiya

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.18-alpha.20alpha
2.0.28,610latest

Version History

VersionDownloads (Last 7 Days)Published
2.0.28,610
2.0.143
2.0.05
1.1.6669
1.1.52
1.1.40
1.1.330
1.1.21
1.1.11
1.1.0112
1.0.18-alpha.20
1.0.1811
1.0.18-alpha.10
1.0.18-alpha0
1.0.1-7.alpha0
1.0.1628
1.0.150
1.0.141
1.0.130
1.0.120
1.0.11-alpha0
1.0.10-alpha0
1.0.91
1.0.80
1.0.70
1.0.61
1.0.50
1.0.40
1.0.30
1.0.21
1.0.10
1.0.03
0.1.3-alpha0
0.1.2-alpha0
0.1.1-alpha0
0.1.0-alpha1

Package Sidebar

Install

npm i react-web-share

Weekly Downloads

9,520

Version

2.0.2

License

MIT

Unpacked Size

23.2 kB

Total Files

6

Last publish

Collaborators

  • harshzalavadiya