Github user aaronjwood commented on the issue:
https://github.com/apache/tinkerpop/pull/852
Can the docs be fixed surrounding this as well? The docs show:
```
const graph = new Graph();
const g = graph.traversal().withRemote(new
DriverRemoteConnection('ws://localhost:8182/gremlin'));
```
which doesn't match up at all with what you really need to do:
https://groups.google.com/d/msg/gremlin-users/YyHXS579cyw/t3TnQG_BAgAJ
The concept of importing the module and showing where to access these
classes (`gremlin.driver` or `gremlin.structure` for example) is missing, which
will make people have to hunt down where the classes really are.
---