
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
luna-emoji
Advanced tools
Emoji plugin using a modified version of the ckeditor5 SpecialCharacters plugin.
To install it, run:
npm i --save @phudak/ckeditor5-emoji
Import the Emoji plugin with all optional categories. If you want to exclude some category, don't import it.
import {
Emoji, EmojiActivity, EmojiFlags, EmojiFood, EmojiNature, EmojiObjects, EmojiPeople,
EmojiPlaces, EmojiSymbols
} from '@phudak/ckeditor5-emoji/src';
Add the Emoji plugin and optional categories to CKEditor plugins.
Add plugin to build:
InlineEditor
.create( document.querySelector( '#editor' ), {
plugins: [
...,
Emoji,
EmojiPeople,
EmojiNature,
EmojiPlaces,
EmojiFood,
EmojiActivity,
EmojiObjects,
EmojiSymbols,
EmojiFlags,
],
} )
.then( editor => {
window.editor = editor;
} )
.catch( err => {
console.error( err.stack );
} );
or add plugin to custom editor builder:
InlineEditor.builtinPlugins = [
...
Emoji,
EmojiPeople,
EmojiNature,
EmojiPlaces,
EmojiFood,
EmojiActivity,
EmojiObjects,
EmojiSymbols,
EmojiFlags,
]
Add plugin to build:
InlineEditor
.create( document.querySelector( '#editor' ), {
plugins: [...],
toolbar: [ ... , 'emoji' ],
} )
.then( editor => {
window.editor = editor;
} )
.catch( err => {
console.error( err.stack );
} );
or add plugin to custom editor builder:
InlineEditor.defaultConfig = {
toolbar: {
items: [
...,
'emoji',
'|',
'undo',
'redo'
]
},
};
You can check my Emoji plugin integration into custom CKEditor builds here:
Emoji are divided into categories:
You can choose specific categories or import all of them.
FAQs
Emoji plugin for CKEditor 5
We found that luna-emoji 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.