UNPKG

817 BMarkdownView Raw
1# Component Explorer
2
3This is a command line utility that allows you to interact with the Component
4Explorer exposed by EveryMatrix. It provides the basic functionality for installing
5publishing and searching for components.
6
7## Getting started
8
9Install the tool via npm:
10
11`$ sudo npm install -g cex`
12
13Check out the help to get you started via `cex --help`
14
15```
16$ cex --help
17
18 Usage: cex <command> [options]
19
20 Commands:
21
22 install [component]
23 install component that match name
24
25 login
26 Login to the CEX registry
27
28 publish
29 Publish a package to the CEX registry
30
31 search [pattern]
32 List all components that match a certain pattern
33
34
35 Options:
36
37 -h, --help output usage information
38 -V, --version output the version number
39 -v, --verbose display verbose output
40```