Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/builtbydamian/neo4j-cli
CLI for the most common tasks when using neo4j and cypher.
https://github.com/builtbydamian/neo4j-cli
cli migration neo4j neo4j-database
Last synced: about 1 month ago
JSON representation
CLI for the most common tasks when using neo4j and cypher.
- Host: GitHub
- URL: https://github.com/builtbydamian/neo4j-cli
- Owner: builtbydamian
- Created: 2018-02-26T22:38:05.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T10:36:31.000Z (almost 7 years ago)
- Last Synced: 2024-11-08T18:53:58.308Z (about 2 months ago)
- Topics: cli, migration, neo4j, neo4j-database
- Language: JavaScript
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neo4j CLI
CLI for the most common tasks when using neo4j and cypher.## Installation
```
npm install --save-dev neo4j-cli
# Or
yarn add -D neo4j-cli
```To run any of the commands, you will need to provide the connection details for neo4j. To do this, create a `migrations` folder in the root of your project, and add a file called `config.js` which exports an object or a promise with the following structure:
```js
module.exports = {
host: 'bolt://localhost',
username: 'neo4j',
password: 'neo4j',
};
```If you need to make any async requests to get the connection details, then return a promise that resolves with the config object.