You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `cli/` workspace contains a local connector that enables authenticated npm operations from the web UI. It runs on your machine and uses your existing npm credentials.
89
+
90
+
```bash
91
+
# run the connector in dev mode
92
+
pnpm --filter @npmx/connector dev
93
+
94
+
# or build and run the production version
95
+
pnpm --filter @npmx/connector build
96
+
node cli/dist/cli.mjs
97
+
```
98
+
99
+
The connector will check your npm authentication, generate a connection token, and listen for requests from npmx.dev.
0 commit comments