Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@existdb/node-exist

Package Overview
Dependencies
Maintainers
3
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@existdb/node-exist - npm Package Compare versions

Comparing version
4.1.1
to
4.2.0
spec/examples/exist-tree

Sorry, the diff of this file is not supported yet

+6
-3

@@ -11,2 +11,3 @@ {

"bin": {
"exist-tree": "spec/examples/exist-tree",
"exist-ls": "spec/examples/exist-ls",

@@ -32,3 +33,4 @@ "exist-upload": "spec/examples/exist-upload",

"promise",
"lib"
"lib",
"cli"
],

@@ -55,5 +57,6 @@ "repository": {

"mime": "^2.3.1",
"xmlrpc": "^1.3.1"
"xmlrpc": "^1.3.1",
"yargs": "16.2.0"
},
"version": "4.1.1"
"version": "4.2.0"
}
# node-exist Command Line Scripts
- `exist-ls` list the contents of a collection in exist-db
- `exist-tree` list the contents of a collection in exist-db as a tree
- `exist-upload` upload a file to an exist-db instance

@@ -39,5 +40,19 @@ - `exist-install` upload and install a package into an existdb-instance

Example (here in the root of the cloned repository):
Example
If you installe node-exist globally (`npm install -g @existdb/node-exist`)
```bash
dotenv exist-ls /db/apps
```
If you installed node-exist as a local package (npm dependency)
```bash
dotenv node_module/.bin/exist-ls /db/apps
```
If you cloned this repository
```bash
dotenv spec/examples/exist-ls /db/apps

@@ -44,0 +59,0 @@ ```