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

@codexteam/reactions

v1.1.0

Published

Collect a feedback for your content without coding

Downloads

10

Readme

Reactions

Light-weight module for gathering users' feedback on a webpage content Allows to build in element, containing buttons - emojis for expressing attitude to a content

Getting started

Installation

npm or Yarn

npm install @codexteam/reactions

or

yarn add @codexteam/reactions

Download from CDN

<script src="https://cdn.jsdelivr.net/npm/@codexteam/reactions"></script>

Usage

Simplified initialization

  1. Connect reactions.js script to your page
  2. Create an instance of Reactions using
new Reactions({parent: '', title: '', reactions: []});

where

| name | type | description | |-----------|---------------------------|---------------------------------------------------------------------------| | parent | string or HTMLElement | element in which module should be inserted - selector or element instance | | title | string | module title | | reactions | string[] | array of emojis to be inserted in module options |

Example

new Reactions({parent: 'body', title: 'What do you think?', reactions: ['👍', '👌', '👎']});

Initialize using reactions tag

  1. Add <reactions> to your page
  2. Provide <reactions> with data-id and data-title to set module id and title
  3. Fill <reactions> with <reaction> each containing emoji to be inserted in module options
  4. Connect reactions.js script to your page
  5. Run Reactions.init()

example:

<reactions data-id='' data-title='What do you think?'>
    <reaction>😁</reaction>
    <reaction>👍</reaction>
    <reaction>😞</reaction>
  </reactions>

Advanced settings

Identify user

Module uses userId property to identify user - by default userId is random number, but it can be specified through setUserId method

| name | type | description | |--------|----------|-----------------| | userId | number | user identifier |

example:

  Reactions.setUserId(1);

Identify module

By default module takes page URL as module identifier, but it also can be specified manually by passing id to reactions constructor

use it for:

  • lists (different modules on one page)
  • binding module to a specific content item, regardless of URL

in this case instance should be created this way

new Reactions({parent: '', title: '', reactions: [], id: ''});

where

| name | type | description | |-------|----------------------|-------------------| | id | string or number | module identifier |