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

hexo-tag-share-post

v0.0.1

Published

Hexo tag plugin for embedding share links into the post body

Downloads

63

Readme

hexo-tag-share-post

npm version Build Status Coverage Status

A small and dependency-free Hexo plugin that adds share_post tag and helper for adding text link to share blog post in social media. (Twitter, Facebook, and LinkedIn.)

Installation

npm install hexo-tag-share-post --save

Usage

You can use this plugin to add text social media share links either in blog post (e.g., .md files) or in your blog template (e.g., .ejs files).

Markdown

Here is how you can add share links inside your blog post body. Below example uses Markdown file.

Share this blog post on {% share_post twitter %}, {% share_post facebook %}, and {% share_post linkedin %}

Result:

Share this blog post on Twitter, Facebook, and Linkedin

You can also change the default label by passing the second argument to share_post tag.

{% share_post twitter "Share on Twitter now!" %} |
{% share_post facebook "Share on Facebook now!" %} |
{% share_post linkedin "Share on Linkedin now!" %}

Result:

Share on Twitter now! | Share on Facebook now! | Share on Linkedin now!

EJS (or any other template format)

Here is how you can insert share blog post links in the template source file. Below examples uses EJS template file.

<%- share_post("facebook") %>

Result:

Facebook

<%- share_post("facebook", "Share on Facebook now!") %>

Result:

Share on Facebook now!

Configuration

You can configure the plugin in _config.yml file.

share_post:
  facebook:
    url: 'https://www.facebook.com/sharer/sharer.php'
    query: 'u=%link&t=%title'
    text: 'Facebook'

  twitter:
    url: 'https://twitter.com/intent/tweet'
    message: '"%title" %link via @%handle'
    query: 'text=%message'
    text: 'Twitter'
    handle: 'hexojs'

  linkedin:
    url: 'https://www.linkedin.com/sharing/share-offsite/'
    query: 'url=%link&title=%title'
    text: 'LinkedIn'

Setting the default Twitter handle

share_post:
  twitter:
    handle: 'wololock'

Changing default Twitter message

By default, the posted message uses the following format:

"%title" %link via @%handle

You can change it using the following configuration:

share_post:
  twitter:
    message: 'READ THIS: %title - %link (via @%handle)'

The new format produces message like this one:

READ THIS: "Lorem ipsum" - https://example.com/lorem-ipsum (via @wololock)

Changing the default links text

share_post:
  facebook:
    text: 'Share on Facebook'

  twitter:
    text: 'Share on Twitter'

  linkedin:
    text: 'Share on LinkedIn'