minecraft-splash
v1.0.1
Published
A simple and easy to use package which will randomly select a splash text which normally displays on the main menu of Minecraft.
Readme
Hi! Thanks for stopping by.
In order to use this package, all you need to do is type this:
npm install minecraft-splash
then within your project(s), include:
const splashes = require("minecraft-splashes")
and to actually pull a random Minecraft splash text, type (or copy and paste) this:
splashes();
and you're done!
An example:
const splashes = require("minecraft-splashes");
console.log(splashes());
