
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
minecraft-text-js
Advanced tools
Turn your minecraft text to other format! =D
Other languages: English | 正體中文
You can find examples on the "examples" folder
You can see the demo on https://onikuryh.github.io/minecraft-text-js/
| Package | Command |
|---|---|
| None | git clone https://github.com/OnikurYH/minecraft-text-js.git |
| NPM | npm install --save minecraft-text-js |
| Yarn | yarn add minecraft-text-js |
For formatting code, please see the Minecraft Official Wiki:
http://minecraft.gamepedia.com/Formatting_codes
var myRawMinecraftString = '&3This &nis&r &ma&r &5&oMinecraft &lstyle &6<ext &ka&6, Ya&r&6! &r&0=D';
var myMinecraftHTMLString = MinecraftText.toHTML(myRawMinecraftString);
document.getElementById('my-element').innerHTML = myMinecraftHTMLString;
// Make obfuscate (&k) animate
MinecraftText.refeashObfuscate();
var myRawMinecraftString = '&3This &nis&r &ma&r &5&oMinecraft &lstyle &6<ext &ka&6, Ya&r&6! &r&0=D';
var myElement = $('my_element').minecraftText();
myElement.toHTML(myRawMinecraftString);
// Make obfuscate (&k) animate on this element
myElement.refeashObfuscate();
var myRawMinecraftString = '&3This &nis&r &ma&r &5&oMinecraft &lstyle &6<ext &ka&6, Ya&r&6! &r&0=D';
var myElement = $('my_element');
var myMinecraftHTMLString = MinecraftText.toHTML(myRawMinecraftString);
myElement.html(myMinecraftHTMLString);
// Make obfuscate (&k) animate on global
MinecraftText.refeashObfuscate();
const MinecraftText = require('minecraft-text-js');
var myRawMinecraftString = '&3This &nis&r &ma&r &5&oMinecraft &lstyle &6<ext &ka&6, Ya&r&6! &r&0=D';
var myMinecraftHTMLString = MinecraftText.toHTML(myRawMinecraftString);
import MinecraftTextJS from 'minecraft-text-js';
const myRawMinecraftString = "&3This &nis&r &ma&r &5&oMinecraft &lstyle &6<ext &ka&6, Ya&r&6! &r&0=D";
const myMinecraftHTMLString = MinecraftTextJS.toHTML(myRawMinecraftString);
str - The string you want to convert to HTML DOM String
MinecraftText.toHTML(str);
Use for after you have append a new HTML DOM String with obfuscate values
rootElement (optional) - Refresh from element
MinecraftText.refeashObfuscate(rootElement?);
You can build this library by yourself =P
Open command-line terminal
cd /where/you/want/to/clone/into
git https://github.com/OnikurYH/minecraft-text-js.git
cd minecraft-text-js
yarn install
yarn build
The script will be built on the "dist" folder
Develop by: OnikurYH
License: MIT
FAQs
Turn your minecraft text to other format! =D
We found that minecraft-text-js 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.