lightweight in-browser solidity editor based on code mirror with smart contract ui
(can be used stand alone or embedded (iframe))
- Open issues on things that are broken
- Fix open issues by sending PRs
- Add documentation
play ed
is a an editor that allows you to build your solidity code and get an autogenerated ui to help you interact with the contract.
To deploy a contract, all you need are:
npm install editor-solidity
const solidityeditor = require('editor-solidity')
// for now, see `demo.js`
<!doctype html>
<html>
<head><meta charset="utf-8"></head>
<body>
<iframe src="https://playproject-io.github.io/play-ed/"></iframe>
<script>
var solidityeditor = document.querySelector('iframe')
// @TODO: not yet fully implemented
// @NOTE: it is possible to .postMessage file content to the iframe editor
// which will be opened
</script>
</body>
</html>
MIT