ID3 javascript

Hi guys.

I need the unminified version of this library https://github.com/aadsm/JavaScript-ID3-Reader but I don’t know node.js and how to package that stuff, I wasted two days on it still can’t figure it out.

Any help would be appreciate it.

Thank you.

Hello FWDesign,

The project you mentioned is using a Makefile, which means that is using the Make tool to build the minimized version.

It is also using npm for installing dependencies.

You need to install make and Node.js on your system. Node.js knowledge is not required, however. You just need to run npm install command to install dependencies, while in a terminal.

You just have to make your changes, then run make dist in a terminal.

Cheers!