Solidity: Second Iteration - msatkinson/ethereum GitHub Wiki

###Quick Start ####Start geth with Support for Remote Procedure Calls

#get --testnet --rpc
geth  --rpc

####Install Nodejs Dependencies

npm install web3
npm install solc
node

####Working from Nodejs

var web3 = require('web3')
web3 = new web3(new web3.providers.HttpProvider("http://localhost:8545"))
var solc = require('solc')