npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dashevo/dashcore-node

v7.0.4

Published

Full node with extended capabilities using Dashcore and Dash Core (dashd)

Downloads

119

Readme

Dashcore Node

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.

Usages

As a standalone server

git clone https://github.com/dashevo/dashcore-node
cd dashcore-node
npm install
./bin/dashcore-node start

When 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 :

  • Insight-API : ./bin/dashcore-node addservice @dashevo/insight-api
  • Insight-UI : ./bin/dashcore-node addservice @dashevo/insight-ui

You also might want to add these index to your dash.conf file :

-addressindex
-timestampindex
-spentindex

As a library

npm install @dashevo/dashcore-node
const 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);
    });
});

Prerequisites

  • Dash Core (dashd) (v0.13.0) with support for additional indexing (see above)
  • Node.js v8+
  • ZeroMQ (libzmq3-dev for Ubuntu/Debian or zeromq on OSX)
  • ~50GB of disk storage
  • ~1GB of RAM

Configuration

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 start

This 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.

Add-on Services

There are several add-on services available to extend the functionality of Bitcore:

Documentation

  • Upgrade Notes
  • Services
    • Dashd - Interface to Dash Core
    • Web - Creates an express application over which services can expose their web/API content
  • Development Environment - Guide for setting up a development environment
  • Node - Details on the node constructor
  • Bus - Overview of the event bus constructor
  • Release Process - Information about verifying a release and the release process.

Setting up dev environment (with Insight)

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.

Contributing

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.

License

Code released under the MIT license.

Copyright 2016-2018 Dash Core Group, Inc.

  • bitcoin: Copyright (c) 2009-2015 Bitcoin Core Developers (MIT License)