wow-am
v0.0.4
Published
A NPM-like World of Warcraft Addon Manager
Downloads
13
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:
wowPath
has 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 andInterface
folder.addons
is an array of strings. Each item is aCurse identifier
of 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:
init
will create a samplewamfile
in specified folder.update
installs or updates addons specified bywamfile
at 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
wamfile
creation when given a path.
0.0.2
- Fixed sample
wamfile
.
0.0.1
- First released version! 🎉