wow-am
v0.0.4
Published
A NPM-like World of Warcraft Addon Manager
Maintainers
Readme
wam is a command-line utility to bulk install and update World of Warcraft addons on macOS. It uses Curse.com addons database.
Installation
wam requires Node.js and NPM. Having both set up you can just install it as a global package:
npm install -g wow-am
Configuration
wam reads a wamfile config file to know where is located your World of Warcraft installation and which addons you want to install/update.
A wamfile is just a JSON file with two keys:
wowPathhas a string associated telling wam where is located your World of Warcraft installation. The path should point to the folder containing World of Warcraft executable andInterfacefolder.addonsis an array of strings. Each item is aCurse identifierof an addon.
This is a sample wamfile shipped with wam:
{
"wowPath": "/Applications/Battle.net/World of Warcraft",
"addons": [
"deadly-boss-mods"
]
}Curse identifiers
The easiest way to know the identifier of an addon is searching it in Curse.com database. Each addon has an information page with a download link and the URL to that page follows this pattern: http://mods.curse.com/addons/wow/<curse-identifier>.
For instance, Deadly Boss Mods's identifier is deadly-boss-mods.
Usage
[INFO] Usage: wam <command> [wamfilePath]wam supports two commands:
initwill create a samplewamfilein specified folder.updateinstalls or updates addons specified bywamfileat given path.
If no path is given the current directory will be used.


To do...
- [x] Fix wamfile creation when path to a folder is given
- [x] Fix wamfile creation when path to a file is given
- [x] Add some images to Readme.
- [ ] Check Windows compatibility.
Changelog
0.0.4
- Add support for new curseforge.com AddOns repository.
0.0.3
- Fixed
wamfilecreation when given a path.
0.0.2
- Fixed sample
wamfile.
0.0.1
- First released version! 🎉
