GitXplorerGitXplorer
d

nexus-cli

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
9f25f50437e6329e05f4a1d125dc3f13618ba9c7

Add usage to readme

ddgoguerra committed a year ago
Unverified
c3b4af59221e2295cf6ca2f96809362b7f279475

Prompt args with fzf, refactor commands

ddgoguerra committed 3 years ago
Unverified
2b6b3903525b0fdd492272994cff2c488f884d05

Move commands to a directory, add "npm" subcommands

ddgoguerra committed 3 years ago
Unverified
e7616ea852d2a4ee46eacbddb3f870ad17065ec3

Get Nexus API results as a stream

ddgoguerra committed 3 years ago
Unverified
2f4fc2aae45d9e390a1b5d7d61ba4a25db6ef6cd

First working version

ddgoguerra committed 3 years ago
Unverified
cc84c4c1092a878c6b063b1b0f5c4c6f04f851d3

Initial empty commit

ddgoguerra committed 3 years ago

README

The README file for this repository.

nexus-cli

Nexus Repository Manager CLI.

Installation

Install with:

npm install -g .

Save your Nexus credentials in ~/.nexus:

$ cat ~/.nexus
NEXUS_HOST=https://path-to-nexus.com
NEXUS_USER=
NEXUS_PASS=
#NEXUS_STRICT_SSL=false
#NEXUS_DOCKER_REPOSITORY=docker-repo-name
#NEXUS_MAVEN_REPOSITORY=maven-repo-name
#NEXUS_NPM_REPOSITORY=npm-repo-name

Usage

nexus <command>

Commands:
  nexus component <repository> <name>  List component versions
  nexus components <repository>        List components of a repository
  nexus docker <action>                Run command on a docker repository
  nexus maven <action>                 Run command on a maven repository
  nexus npm <action>                   Run command on a npm repository
  nexus repositories                   List repositories        [aliases: repos]
  nexus search <query...>              List components of a repository

Options:
      --version  Show version number                                   [boolean]
  -h, --help     Show help                                             [boolean]

Examples:
  nexus repos
  nexus component REPOSITORY NAME
  nexus npm list
  nexus npm get NAME
  nexus npm get @ORG/NAME
  nexus docker list
  nexus docker get NAME
  nexus maven groups
  nexus maven list
  nexus maven list --group=GROUP
  nexus maven get --group=GROUP
  nexus maven get GROUP:NAME