Skip to main content

Apexlang CLI

The apex CLI is a one-stop shop for all projects across all languages.

It’s a

  • Project templating and scaffolding tool
  • Extensible code generation tool
  • Task runner

For more information, visit https://apexlang.io.

Prerequisites

The apex CLI depends on Deno.

Install deno with instructions here.

Installation

To install a release version of the apex CLI, run the command below:

deno install -A --unstable -f -n apex https://deno.land/x/apex_cli@v0.1.0/apex.ts

To install from source, clone this repository and run ./apex run install

git clone https://github.com/apexlang/apex.git
cd apex
./apex install # or deno install -A --unstable ./apex.ts

Usage

Visit https://apexlang.io for official documentation and usage.

apex --help

Output:

console{title="apex help"}

Running tests

To run tests, run the command below:

apex test

Development

To run the development version of the apex CLI, use the apex script in the root of this repository, e.g.

./apex help

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details