Interprets query operations to generate an example graph that completely and minimally demonstrates query behavior.
Jackson Neal
External Components:
- Download ANTLR tool antlr-4.9.3-complete.jar, place in
./resources
directory at project root.
Dependencies:
# Install dependencies
npm install
- Use ANTLR to generate parser for grammar ./src/grammar/GremlinGx.g4.
npm run generate
- Build with Webpack
npm run build
Run Webpack serve in dev mode with hot reload
npm run dev
# Run Jest test suite
npm test
# With coverage
npm run test-coverage
# ESLint check
npm run lint-check
# ESLint fix
npm run lint
# Prettier check
npm run format-check
# Prettier format
npm run format