Write a Plugin that reads Notetags - Beginner Go to Tutorial →

This tutorial will teach you the basics of reading data from notetags in your plugin. It contains real examples, explanations, and is in 100% written format.

Transpile ES6+ Javascript to ES5 Go to Tutorial →

Transpile Javascript code written with ES6 features into code compatible for older browsers and versions of MV prior to 1.6.0 using Babel.js.


It means that we can now enjoy a modern browser experience, and can use Javascript code with new features from the ECMAScript2015 specification (commonly known as ES6). I highly recommend using the ES6 features, as they will make your code easier to write and easier to read.


Note: This tutorial was written with an older version of Babel that is now out of date. It is recommended to follow the documentation on the Babel website.

Tutorial Image Description
Create pretty JSON with git hooks for better diffs Go to Tutorial →

This tutorial shows how to use git hooks in order to automatically format the JSON files created by RPG Maker MV in a nice way. Some data files are minified to a single line by the editor, which causes git diffs to show the entire line was changed.


Use a hook to automatically format the JSON with line breaks before committing, so the diffs show what was actually changed.

Git logo