I need to connect a node.js project using NEODE library (https://github.com/adam-cowley/neode) to a graphenedb hosted by heroku.
on neode docs they use 2 approaches based on:
1. direct access using
2. env file contains props
Anyone has facing this issue?
1. new Neode('bolt://localhost:7687', 'username', 'password', true);
2. // .env
NEO4J_PROTOCOL=bolt
NEO4J_HOST=localhost
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=neo4j
NEO4J_PORT=7687