@carlelieser/nexus-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/dist/cli/index.js +1247 -0
- package/dist/cli/index.js.map +1 -0
- package/package.json +70 -0
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# nexus-cli
|
|
2
|
+
|
|
3
|
+
Download Nexus Mods from the command line on a free account.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install -g nexus-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Requires Node.js 20+.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
Import your logged-in session from your browser (once):
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
nexus import --from chrome
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Download a mod:
|
|
22
|
+
|
|
23
|
+
```sh
|
|
24
|
+
nexus download https://www.nexusmods.com/skyrimspecialedition/mods/12604
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Download a collection:
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
nexus download https://www.nexusmods.com/games/skyrimspecialedition/collections/abc123
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Run `nexus --help` for all commands and flags.
|