Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@joeattardi/emoji-button
Advanced tools
Vanilla JavaScript emoji picker 😎
Emoji Button is supported on all modern browsers supporting the latest JavaScript features. Internet Explorer is not supported.
If you are using a package manager like yarn
or npm
, you can install Emoji Button directly from the npm registry:
npm install @joeattardi/emoji-button
First, you'll need a trigger element. This is typically a button, and is used to toggle the emoji picker.
<button id="emoji-trigger">Emoji</button>
Once you've added the trigger, you will need to import the EmojiButton
class and create a new instance. Various options can be passed to the constructor, which is covered in the API documentation.
After constructing a picker, it can be shown by calling showPicker
or togglePicker
on it. These functions expect a reference element as a parameter. The picker is positioned relative to this reference element.
When an emoji is selected, the picker will emit an emoji
event, passing an object containing data about the emoji that was selected. You can then handle the selected emoji however you want.
For more in depth documentation and examples, please visit https://emoji-button.js.org.
import { EmojiButton } from '@joeattardi/emoji-button';
const picker = new EmojiButton();
const trigger = document.querySelector('#emoji-trigger');
picker.on('emoji', selection => {
// handle the selected emoji here
console.log(selection.emoji);
});
trigger.addEventListener('click', () => picker.togglePicker(trigger));
The easiest way to hack on Emoji Button is to use the documentation site. First, you should fork this repository.
git clone https://github.com/your-name/emoji-button.git
npm install
npm link
npm run build:watch
site
subdirectorynpm install
npm link @joeattardi/emoji-button
npm run develop
FAQs
Vanilla JavaScript emoji picker
We found that @joeattardi/emoji-button demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.