Skip to content

Command list

Chen Su edited this page Jul 26, 2022 · 1 revision

Command ls / list

Available since v0.1.0.

List all installed Deno versions, and all alias name to versions.

ls command is the alias of list command.

Usage

dvm ls
dvm list

Output Format

  • The installed but not activated versions will just display the version number. It will started with triple spaces to keep alignment with activated version.

    dvm ls
    #    v1.0.0
  • The activated version will start with -> symbols.

    dvm ls
    # -> v1.0.0
  • All alias names with display with the version that they point to.

    dvm ls
    # example -> v1.0.0
    # default -> v1.24.0

Example

dvm ls
# -> v1.24.0
#    v1.0.0
# alias_example -> v1.0.0
Clone this wiki locally