OXS 2.0 TV Sound Bar
Compact sound bar pick for boosting TV, movie, and console audio.
View on Amazon
Bmmplay may earn a commission from qualifying purchases made through these links.
No products in the cart.
Simple enough for a child, powerful enough for a developer
BMM_Archive · July 16, 2026
(This tutorial and others are available in their original format here) Background: Git is a powerful Version Control System that keeps track of differences in files as well as facilitating collaboration between team members. This isn't a git tutorial, but a tutorial to address an annoyance that people face when using git to work collaboratively on an RPG Maker MV project. Several of the data files in RPG Maker don't save in a nice, pretty format (Systems.json is one in particular).
#!/usr/bin/env node
const files = ['data/System.json'] // add all JSON files here to pretty
const fs = require('fs')
const { exec } = require('child_process')
try {
files.forEach(file => {
// Load file, pretty the JSON, and write it back
const json = fs.readFileSync(`./${file}`)
fs.writeFileSync(`./${file}`, JSON.stringify(JSON.parse(json), null, 2))
// Add the file back to the staging since it changed
exec(`git add ${file}`, (err, stdout, stderr) => {
if (err) {
console.error(err)
process.exit(1)
}
console.log(`stdout: ${stdout}`)
console.log(`stderr: ${stderr}`)
process.exit(0)
})
})
} catch (err) {
console.error(err)
process.exit(1)
}
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadIf you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
OXS 2.0 TV Sound Bar
Compact sound bar pick for boosting TV, movie, and console audio.
View on Amazon
Bmmplay may earn a commission from qualifying purchases made through these links.
No replies yet.
Loading summary...
Bmmplay creator tools
Log in or create an account to use this creator tool.
Join the conversation
Your reaction is ready. Log in and you will return to this page to add it.
Are you sure you want to close this music player?
Community safety