# node-ethereum **Repository Path**: mirrors_mikehostetler/node-ethereum ## Basic Information - **Project Name**: node-ethereum - **Description**: a simple standalone or embeddable Ethereum client written for Node.js - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README node-ethereum [![Build Status](https://travis-ci.org/wanderer/node-ethereum.svg?branch=master)](https://travis-ci.org/wanderer/node-ethereum) =============== a simple standalone or embeddable Ethereum client written for Node.js. Install === `git clone https://github.com/wanderer/node-ethereum` `cd ./node-ethereum` `npm install .` Run === `./bin/ethereum` Embed === ```javacsript App = require('../') app = new App(); app.start(function(){ console.log("Ethereum has started"); }); ```