mix
elixir build tool
TLDR
Create new project
$ mix new [project_name]
Install dependencies$ mix deps.get
Compile project$ mix compile
Run tests$ mix test
Start interactive shell$ iex -S mix
Run task$ mix [task_name]
SYNOPSIS
mix task [options]
DESCRIPTION
mix is the Elixir build tool. It manages projects, dependencies, and tasks.
The tool creates projects, compiles code, and runs tests. Central to Elixir development.
PARAMETERS
TASK
Mix task to run.new NAME
Create new project.deps.get
Fetch dependencies.compile
Compile project.test
Run tests.format
Format code.--help
Display help information.
CAVEATS
Requires Elixir. Hex for packages. Task-based system.
HISTORY
Mix was created as the build tool for Elixir, providing project management and task automation.
