npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

social-media-link-sharer

v1.1.2

Published

A javascript framework to share url to social media platforms.

Downloads

141

Readme

social-media-link-sharer

A javascript framework to share url to social media sites.

_Star this project on GitHub https://github.com/rsshrestha23/social-media-sharer _

Supported Javascript Frameworks:

  • React JS
  • Next Js
  • Vue JS
  • Angular JS

Features

  • share url to facebook
  • share url to reddit
  • share url to Whatsapp
  • share url to twitter
  • share url to linkedin
  • copy url to clipboard
  • Clean String

It is a lightweight javascript framework, which makes it very easy and simple to share URL to various social media sites. social-media-link-sharer is created by shrestharojil.com.np

Here is how to get started with social-media-link-sharer.

Installation

Install using NPM

npm i social-media-link-sharer

Install using yarn

yarn add social-media-link-sharer

Example 1 with React.js

import React from "react";
import { SocialMediaSharer } from "./SocialMediaSharer";

function App() {
  const sharer = new SocialMediaSharer();
  sharer.url = ""; //your url
  sharer.title = ""; //title for reddit, this is optional
  sharer.text = ""; // description for twitter, not more than a hundred characters, optional.
  sharer.hashtags = []; // a list of hashtags for twitter,also optional

  return (
    <div>
      {/* call the share method, passing the platform name as a parameter to share. */}
      <button onClick={() => sharer.share("facebook")}>share on facebook</button>
      <button onClick={() => sharer.share("twitter")}>share on twitter</button>
      <button onClick={() => sharer.share("whatsapp")}>share on Whatsapp</button>
      {/* // Or directly call the platform as a method */}
      <button onClick={() => sharer.linkedin()}>share on linkedin</button>
      <button onClick={() => sharer.reddit()}>share on reddit</button>
      <button onClick={() => sharer.copy()}>copy Link</button>
    </div>
  );
}
export default App;

Note:

The parameter for the share method is case insensitive, as long as it is a valid name, the function will get executed. the valid parameters are: facebook, twitter, reddit, linkedin, whatsapp, copy.

Example 2 with React.js

import React from "react";
// you can directly import these methods and use it without the SocialMediaSharer class object
import {
  facebook,
  twitter,
  reddit,
  linkedin,
  copy,
  whatsapp,
} from "./SocialMediaSharer";

function App() {
  return (
    <div>
      <button onClick={() => facebook({ url: "" })}>
        share on facebook
      </button>
      <button
        onClick={() =>
          twitter({
            url: "",
            text: "",
            hashtags: [""],
          })
        }
      >
        share on twitter
      </button>
      {/* if no url is provided, it will use the current page url. */}
      <button onClick={() => whatsapp()}>share on Whatsapp</button>
      <button onClick={() => reddit({ title: "" })}>
        share on reddit
      </button>
      <button onClick={() => copy()}>copy Link</button>
    </div>
  );
}
export default App;

Note:

By default social-media-link-sharer pop up a new window while sharing url, to use the parent window, you can change the target like this;

const sh = new SocialMediaSharer()
sh.target = "_parent" //by default the target is _blank

When no url is defined, social-media-link-sharer uses the current url of the page.

You can also clean a string, before sharing it to social media site using the cleanString function.

Example:

import React from 'react'
import { cleanString } from "SocialMediaSharer";

function App(){
    const uncleanString = "The 'Quick'? Brown Fox Jump, Over The Lazy Dog;"
    const clean = cleanString(uncleanString) 
    //will return "the-quick-brown-fox-jump-over-the-lazt-dog"
    return (
    <div>
        <...../>
    </div>
    )
}
export default App;