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

mf-emotes

v1.0.0

Published

A meme based emoticon standard.

Downloads

10

Readme

dem-feels

A meme based emoticon standard.

Build Status Dependency Status devDependency Status

example

const demFeels = require('dem-feels');

demFeels('hello world! feelsgd');
// => hello world! <img src="https://cdn.rawgit.com/CreaturePhil/dem-feels/master/emotes/feelsgd.png" title="feelsgd" width="50" height="50" />'

installation

$ npm install dem-feels

emotes

Emote | Name | Description --------- | -------- | --------------- feelsgd | feelsgd | Feels Good Man feelsbd | feelsbd | Feels Bad Man feelsmd | feelsmd | Feels Mad Man feelsrs | feelsrs | Feels Serious Man feelsok | feelsok | Feels Okay Man feelsnv | feelsnv | Feels Nervous Man feelsgn | feelsgn | Feels Gun Man feelsrb | feelsrb | Feels Robber Man feelsdd | feelsdd | Feels Dead Man feelspn | feelspn | Feels Pain Man feelshp | feelshp | Feels Hope Man feelsco | feelco | Feels Cool Man feelscr | feelscr | Feels Crazy Man feelstr | feelstr | Feels Tired Man feelssc | feelssc | Feels Scare Man feelscop | feelscop | Feels Cop Man feelsnerd | feelsnerd | Feels Nerd Man feelsfdra | feelsfdra | Feels Fedora Man feelsrg | feelsrg | Feels Rage Man feelspink | feelspink | Feels Pink Man feelsjig | feelsjig | Feels Jiggle Man xaa | xaa | Exaggerated Laughing Face oshet | oshet | Oh shit, you are screw! Shock Face niglol | niglol | Hysterical Laughing Face wtfman | wtfman | What the fuck man?! FacePalm | FacePalm | Palm to Face hmmface | hmmface | Hmm... thinking face yesface | yesface | Yes face noface | noface | No Face yayface | yayface | Yay Face

documentation

demFeels(message)

Parses the message with dem feels. Default maximum count of parsing amount of emotes is 5.

demfeels.extendEmotes(newEmotes)

Add new emotes to the default list of emotes. newEmotes is an object.

Example:

demFeels.extendEmotes({
  'feelsnew': 'feelsnew.png'
});

demFeels.getEmotes()

Get an object of emotes. For example: {'feelsgd': 'https://cdn.rawgit.com/CreaturePhil/dem-feels/master/feelsgd.png'}

demFeels.setMaxCount(count)

Set the maximum number of emotes to parse. Defaults to 5. For example, limiting it to 1 will only parse one emote:

demFeels.setMaxCount(1);
demFeels('feelsgd feelsgd');
// => <img src="https://cdn.rawgit.com/CreaturePhil/dem-feels/master/emotes/feelsgd.png" title="feelsgd" width="50" height="50" /> feelsgd'

But setting it to 2 will parse two emotes:

demFeels.setMaxCount(2);
demFeels('feelsgd feelsgd');
// => <img src="https://cdn.rawgit.com/CreaturePhil/dem-feels/master/emotes/feelsgd.png" title="feelsgd" width="50" height="50" /> <img src="https://cdn.rawgit.com/CreaturePhil/dem-feels/master/emotes/feelsgd.png" title="feelsgd" width="50" height="50" />'

license

MIT