remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
d11e9 d98e3cc71c handle loading gist and default example clash 9 years ago
assets add icon font 9 years ago
.npmignore add icon font 9 years ago
LICENSE.md Top-level license file. 9 years ago
README.md bump npm version to match latest 9 years ago
index.html handle loading gist and default example clash 9 years ago
index.js re-add soljson.js and add version func 9 years ago
package.json bump npm version to match latest release 9 years ago

README.md

#Browser-solidity

Browser solidity is a browser based solidity compiler. To use either visit https://chriseth.github.io/browser-solidity or clone/download this repo and open index.html in your browser.

#Nodejs usage

To use the solidity compiler via nodejs you can install it via npm

npm install solc

And then use it like so:

var solc = require('solc');
var input = "contract x { function g() {} }";
var output = solc.compile(input, 1); // 1 activates the optimiser
for (var contractName in output.contracts)
	console.log(contractName + ': ' + output.contracts[contractName].bytecode);