0.0.4 • Published 6 years ago

wow-am v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

npm npm

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

Installation

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:

  1. 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 and Interface folder.
  2. addons is an array of strings. Each item is a Curse 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:

  1. init will create a sample wamfile in specified folder.
  2. update installs or updates addons specified by wamfile at given path.

If no path is given the current directory will be used.

wam init

wam update

To do...

  • Fix wamfile creation when path to a folder is given
  • Fix wamfile creation when path to a file is given
  • 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! 🎉