🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

react-coinhive

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-coinhive

react-coinhive React component

1.0.2
latest
Source
npm
Version published
Weekly downloads
14
-26.32%
Maintainers
1
Weekly downloads
 
Created
Source

react-coinhive

Mine cryptocurrency in your browser. This uses Coin-Hive to mine Monero (XMR).

Installation

npm install --save react-coinhive

Usage

import React from 'react';
import CoinHive from 'react-coinhive';

export default MyClass extends React.Component {
  render() {
    return (
      <CoinHive
        userName="Maya"
        siteKey="caP8U8pZXH6n0f53eV3fdpwOvpmTAD3C"
        autoThreads={false}
        threads={2}
        src={CoinHive.src.authedmine}
        onInit={miner => setInterval(
          () => console.log(CoinHive.getMinerData(miner))
          , 1000
        )}
      />
    )
  }
}

Props

  • siteKey: Your Coin-Hive Site Key.

  • userName: If used, the miner will be created with CoinHive.User(siteKey, userName). By default the miner is created with CoinHive.Anonymous(siteKey).

  • src : Source url of the js script minier. Requires a string. Default is CoinHiveClient.src.coinhive ('https://coinhive.com/lib/coinhive.min.js') Available default values :

      CoinHiveClient.src = {
        coinhive: 'https://coinhive.com/lib/coinhive.min.js',
        authedmine : 'https://authedmine.com/lib/authedmine.min.js',
      };
    
  • threads: The number of threads the miner should start with. Default is 2.

  • throttle: The fraction of time that threads should be idle. Default is 0.

  • onInit: A function that takes the miner instance as argument. It's called when the miner is created.

  • onStart: A function that takes the miner instance as argument. It's called every time the miner is started.

  • onStop: A function that takes the miner instance as argument. It's called every time the miner is stopped.

Disclaimer

I have nothing to do with coin-hive.com.

Keywords

react

FAQs

Package last updated on 23 Oct 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts