| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A Dash full node for building applications and services with Node.js. A node is extensible and can be configured to run additional services. At the minimum a node has an interface to Dash Core (dashd) v0.13.0 for more advanced address queries. Additional services can be enabled to make a node more useful such as exposing new APIs, running a block explorer and wallet service.
git clone https://github.com/dashevo/dashcore-node
cd dashcore-node
npm install
./bin/dashcore-node startWhen running the start command, it will seek for .dashcore/dashcore-node.json conf file in the working directory (see /docs/services/dashd.md for an example). If it doesn't exist, it will create it, with basic task to connect to dashd.
Some plugins are available :
You also might want to add these index to your dash.conf file :
-addressindex -timestampindex -spentindex
npm install @dashevo/dashcore-nodeconst dashcore = require('@dashevo/dashcore-node');
const config = require('./dashcore-node.json');
let node = dashcore.scaffold.start({ path: "", config: config });
node.on('ready', function () {
console.log("Dash core started");
node.services.dashd.on('tx', function(txData) {
let tx = new dashcore.lib.Transaction(txData);
console.log(tx);
});
});Dashcore includes a Command Line Interface (CLI) for managing, configuring and interfacing with your Dashcore Node.
dashcore-node create -d <dash-data-dir> mynode
cd mynode
dashcore-node install <service>
dashcore-node install https://github.com/yourname/helloworld
dashcore-node startThis will create a directory with configuration files for your node and install the necessary dependencies.
Please note that Dash Core needs to be installed first.
For more information about (and developing) services, please see the Service Documentation.
There are several add-on services available to extend the functionality of Bitcore:
Prerequisite : Having a dashd node already runing dashd --daemon.
Dashcore-node : git clone https://github.com/dashevo/dashcore-node -b develop Insight-api (optional) : git clone https://github.com/dashevo/insight-api -b develop Insight-UI (optional) : git clone https://github.com/dashevo/insight-ui -b develop
Install them :
cd dashcore-node && npm install \ && cd ../insight-ui && npm install \ && cd ../insight-api && npm install && cd ..
Symbolic linking in parent folder :
npm link ../insight-api npm link ../insight-ui
Start with ./bin/dashcore-node start to first generate a ~/.dashcore/dashcore-node.json file. Append this file with "@dashevo/insight-ui" and "@dashevo/insight-api" in the services array.
Please send pull requests for bug fixes, code optimization, and ideas for improvement. For more information on how to contribute, please refer to our CONTRIBUTING file.
Code released under the MIT license.
Copyright 2016-2018 Dash Core Group, Inc.
| Back | FazBrowse Home | New Git URL |