Aluminum CLI
Command-line interface for Aluminum.
Installation
npm install -g aluminum-cli
Usage
init
al init
Guides you through creating the package.json
manifest for a new Aluminum app. You can use it by itself or in combination with npm init
.
run
al run|r [app]
Runs the given app. If none is specified, defaults to the current working directory.
pack
al pack|p [options] <app>
Builds an executable application package for the given app. This package is what you should distribute to your users. By default, generates a package for the current platform.
--output <dir>
— outputs packages in the given directory; defaults to ./build
--zip
— generates a zip file for each executable
--all
— builds for all supported platforms
--win, --osx, --osx32, --linux64, --linux32
— builds for a specific platform