{"id":13746472,"url":"https://github.com/neo-project/neo-node","last_synced_at":"2026-01-21T05:10:21.028Z","repository":{"id":37678078,"uuid":"97105528","full_name":"neo-project/neo-node","owner":"neo-project","description":null,"archived":true,"fork":false,"pushed_at":"2023-12-07T13:29:24.000Z","size":952,"stargazers_count":229,"open_issues_count":3,"forks_count":224,"subscribers_count":48,"default_branch":"master","last_synced_at":"2024-11-15T19:37:33.097Z","etag":null,"topics":["neo"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neo-project.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-07-13T09:32:17.000Z","updated_at":"2024-09-11T15:55:06.000Z","dependencies_parsed_at":"2023-02-17T19:15:28.140Z","dependency_job_id":"fff2a843-da25-49c0-8600-ea329d11ecad","html_url":"https://github.com/neo-project/neo-node","commit_stats":null,"previous_names":[],"tags_count":56,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo-project%2Fneo-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo-project%2Fneo-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo-project%2Fneo-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo-project%2Fneo-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neo-project","download_url":"https://codeload.github.com/neo-project/neo-node/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253209259,"owners_count":21871622,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["neo"],"created_at":"2024-08-03T06:00:54.198Z","updated_at":"2026-01-21T05:10:21.023Z","avatar_url":"https://github.com/neo-project.png","language":"C#","readme":"\u003cp align=\"center\"\u003e\n\u003ca href=\"https://neo.org/\"\u003e\n      \u003cimg\n      src=\"https://neo3.azureedge.net/images/logo%20files-dark.svg\"\n      width=\"250px\" alt=\"neo-logo\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e      \n  \u003ca href=\"https://github.com/neo-project/neo-node/blob/master/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\" alt=\"License\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/neo-project/neo-node/releases\"\u003e\n    \u003cimg src=\"https://badge.fury.io/gh/neo-project%2Fneo-node.svg\" alt=\"Current neo-cli version.\"\u003e\n  \u003c/a\u003e    \n\u003c/p\u003e\n\nCurrently, neo-cli and neo-gui are integrated into one repository. You can enter the corresponding folder and follow the instructions to run each node.\n\n## Prerequisites\n\nYou will need Window, Linux or macOS. Ubuntu LTS 14, 16 and 18 are supported.\n\nInstall [.NET Core](https://www.microsoft.com/net/download/core).\n\nOn Linux, install the LevelDB and SQLite3 dev packages. E.g. on Ubuntu or Fedora:\n\n```sh\nsudo apt-get install libleveldb-dev sqlite3 libsqlite3-dev libunwind8-dev # Ubuntu\nsudo dnf install leveldb-devel sqlite sqlite-devel libunwind-devel # Fedora\n```\n\nOn macOS, install the LevelDB package. E.g. install via Homebrew:\n\n```\nbrew install --ignore-dependencies --build-from-source leveldb\n```\n\nOn Windows, use the [Neo version of LevelDB](https://github.com/neo-project/leveldb).\n\n## Download pre-compiled binaries\n\nSee also [official docs](https://docs.neo.org/docs/en-us/node/introduction.html). Download and unzip the [latest release](https://github.com/neo-project/neo-node/releases).\n\nOn Linux, you can type the command:\n\n```sh\n./neo-cli\n```\n\nOn Windows, you can just double click the exe to run the node.\n\n## Compile from source\n\nClone the neo-node repository.\n\nFor neo-cli, you can type the following commands:\n\n```sh\ncd neo-node/neo-cli\ndotnet restore\ndotnet publish -c Release\n```\nNext, you should enter the working directory (i.e. /bin/Debug, /bin/Release) and paste the `libleveldb.dll` here. In addition, you need to create `Plugins` folder and put the `LevelDBStore` or `RocksDBStore` or other supported storage engine, as well as the configuration file, in the Plugins folder.\n\nAssuming you are in the working directory:\n\n```sh\ndotnet neo-cli.dll \n```\n\nFor neo-gui, you just need to enter the `neo-node/neo-gui` folder and follow the above steps to run the node.\n\n## Build into Docker\n\nClone the neo-node repository.\n\n```sh\ncd neo-node\ndocker build -t neo-cli .\ndocker run -p 10332:10332 -p 10333:10333 --name=neo-cli-mainnet neo-cli\n```\n\nAfter start the container successfully, use the following scripts to open neo-cli interactive window:\n\n```sh\ndocker exec -it neo-cli-mainnet /bin/bash\nscreen -r node\n```\n\n## Logging\n\nTo enable logs in neo-cli, you need to add the ApplicationLogs plugin. Please check [here](https://github.com/neo-project/neo-modules.git) for more information.\n\n\n## Bootstrapping the network.\nIn order to synchronize the network faster, please check [here](https://docs.neo.org/docs/en-us/node/syncblocks.html).\n\n\n## Usage\n\nFor more information about these two nodes, you can refer to [documentation](https://docs.neo.org/docs/en-us/node/introduction.html) to try out more features. \n\n","funding_links":[],"categories":["Smart Contract Platforms"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo-project%2Fneo-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneo-project%2Fneo-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo-project%2Fneo-node/lists"}