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

mkg-share

v0.3.2

Published

Easy way to add costumizable social share buttons to website including facebook, twitter, google plus, reddit, pinterest, linkedin, whatsapp, sms and e-mail. It auto detects mobile browsers and displays sms and whatsapp share buttons.

Downloads

22

Readme

mkg-share

Easy way to add costumizable social share buttons to website including facebook, twitter, google plus, reddit, pinterest, linkedin, whatsapp, sms and e-mail. It auto detects mobile browsers and displays sms and whatsapp share buttons.

npm version Bower version

It's easy to use and pure js. if you prefer native apis, you can use native share buttons with switching one property.

why should i use it?

1 - Social media icons based on inline svg! so you can easly change the visual style (or animate).
2 - No need extra css or other asset files. just require 'mkg-share'.
3 - Costumize share details easly from assigned element's attributes.
4 - You don't need to update for changed social media logos and colors. Just keep up to date.
5 - Used originally brand guides.
6 - Auto detect social media meta datas from page. If it doesn't exist using title and desc meta tag. (hey you can still change from attr) 7 - If you are a front-end developer you can easily build your ui through incoming social share design from your designer.

Views

default view

default view

pane mode

default view

native buttons are also optional

default view

Install

install with npm

npm install mkg-share --save

or install via bower

bower install mkg-share --save

or you can get the latest release of mkg-share from repo

import script file

<script src="mkg-share.min.js"></script>

or just require it

    //Commonjs way
    var mShare = require('mkg-share');
    new mShare('#targetDiv');

//es way
    import mShare from 'mkg-share';
    new mShare('#targetDiv');

Styling

mshare-item classed item has color property. So you can use it with currentColor at child nodes. Here there are some example:

custom style sample 1

custom style1

.mshare__container .mshare--expanded{
    .mshare-item{background: transparent; // Eaech custom social share button
        .mshare-item-text{color:#aaa;font-weight: bold;margin-left:5px;}  // text section of share button
        .mshare-item-icon{fill:#aaa;} // icon section of share button => its assigned to svg directly
        &:hover{
            .mshare-item-text, .mshare-item-icon{color:currentColor;fill:currentColor;}
        }
    }
}

custom style sample 2

custom style2

.mshare__container .mshare--expanded{
    .mshare-item{background: transparent;border:1px solid currentColor;border-radius: 50%;padding:0;text-align: center;;width:40px;height:40px; // Eaech custom social share button
        .mshare-item-text{display:none}  // text section of share button
        .mshare-item-icon{fill:transparent;stroke:currentColor} // icon section of share button => its assigned to svg directly
        &:hover{background: currentColor;
            .mshare-item-text, .mshare-item-icon{color:#fff;fill:#fff;}
        }
    }
}

Usage

expanded share buttons without texts:

new mShare('#demo1',{text:false});

expanded share buttons:

new mShare('#demo2',{});

social share buttons with assigned pane:

new mShare('#demo3',{style:'pane',googleplus:false,reddit:false,pinterest:false});
HTML Layout
<div id="targetElement" class="mshare_container">
    <div class="mshare mshare--expanded mshare-nonative">
        <a href="#share" class="mshare-item mshare-item--popup mshare-item--facebook">
            <svg class="mshare-item-icon">#inlinesvg</svg>
            <span class="mshare-item-text">#Text</span>
        </a><!-- a social share item  -->
        ...
    </div><!-- final content after plugin triggered -->
</div><!-- targeted Element -->
CSS/SCSS Layout
.mshare__container .mshare--expanded{
    .mshare-item{ // Eaech custom social share button
        .mshare-item-text{}  // text section of share button
        .mshare-item-icon{} // icon section of share button => its assigned to svg directly
    }
}
.mshare__container .mshare--expanded {} /* container of buttons */
.mshare__container .mshare--expanded .mshare-item {} /* Eaech custom social share button */
.mshare__container .mshare--expanded .mshare-item .mshare-item-text {} /* text section of share button */
.mshare__container .mshare--expanded .mshare-item .mshare-item-icon {} /* icon section of share button => its assigned to svg directly */

To do

  • add new mode 'sidebar'
  • add optional share counts
  • add fluid buttons
  • add vertical alignment property

License

The code is released under the MIT License.