Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fbiville/new-app-go
https://github.com/fbiville/new-app-go
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fbiville/new-app-go
- Owner: fbiville
- Created: 2023-01-19T13:26:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T13:49:04.000Z (almost 2 years ago)
- Last Synced: 2024-10-15T01:15:59.258Z (about 1 month ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
= Building Neo4j Applications with Go
> Learn how to interact with Neo4j from a Go project using the Neo4j Go Driver
This repository accompanies the link:https://graphacademy.neo4j.com/courses/app-go/[Building Neo4j Applications with Go course^] on link:https://graphacademy.neo4j.com/[Neo4j GraphAcademy^].
For a complete walkthrough of this repository, link:https://graphacademy.neo4j.com/courses/app-go/[enrol now^].
== Installing the Driver
To use the Neo4j Go Driver in your Go project, you can run the following command:
// tag::install[]
.Installing the neo4j-go-driver dependency
[source,sh]
----
go get -u github.com/neo4j/neo4j-go-driver/v5
----
// end::install[]== Running Examples
All examples that accompany the course are in the `src/` folder.
You can run these examples by invoking the `go run` subcommand.[source,sh]
----
go run ./src/example/example.go
----