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

@juparog/emoji-plugin

v0.1.0

Published

El Emoji Plugin es una pequeña biblioteca que te permite obtener caracteres de emoji utilizando una clave de acceso a un servicio web de emojis. Esta biblioteca es útil cuando necesitas recuperar emojis específicos por su slug y mostrarlos en tu aplicació

Downloads

1

Readme

Emoji Plugin

El Emoji Plugin es una pequeña biblioteca que te permite obtener caracteres de emoji utilizando una clave de acceso a un servicio web de emojis. Esta biblioteca es útil cuando necesitas recuperar emojis específicos por su slug y mostrarlos en tu aplicación.

Instalación

Para usar el Emoji Plugin, primero debes instalarlo en tu proyecto. Puedes hacerlo utilizando npm o yarn.

Usando npm:

npm install emoji-plugin

Usando yarn:

yarn add emoji-plugin

Uso

Una vez que hayas instalado el Emoji Plugin, puedes importarlo en tu aplicación y comenzar a usarlo.

const EmojiPlugin = require('emoji-plugin');

// Crear una instancia del Emoji Plugin
const emoji = new EmojiPlugin();

// Obtener un emoji por su slug y clave de acceso
const input = {
  key: 'tu-clave-de-acceso',
  slug: 'e0-6-waving-hand', // Puedes reemplazarlo por el slug del emoji que desees obtener
};

emoji.execute(input)
  .then((response) => {
    console.log('Emoji character:', response.character);
  })
  .catch((error) => {
    console.error('Error:', error.message);
  });

Asegúrate de reemplazar 'tu-clave-de-acceso' con tu propia clave de acceso al servicio web de emojis.

API

emoji.execute(input: EmojiInputs): Promise<EmojiOutputs>

Este método te permite obtener un emoji por su slug y clave de acceso.

  • input: Un objeto que debe incluir la propiedad key (la clave de acceso) y opcionalmente slug (el slug del emoji que deseas obtener).

  • return: Una promesa que resuelve en un objeto con la propiedad character que contiene el emoji.

Ejemplos

Puedes encontrar ejemplos de uso en el directorio de ejemplos de este repositorio.

Contribuir

Si deseas contribuir a este proyecto, ¡estamos abiertos a tus sugerencias! Por favor, abre un problema o envía una solicitud de extracción.

Licencia

Este proyecto está bajo la Licencia MIT.