This is source code of justsmartcontracts.dev website.
What is justsmartcontracts.dev? Basically it is a web tool for interacting with Ethereum smart contracts. It was initially developed by my friend and me in order to provide a better experience for Ethereum smart contracts developers and blockchain enthusiasts.
Website was developed using Node.js 8.4.0.
Download the project and navigate to the root folder (the one with this file), then execute
npm install
npm run dev
Website will be accessible on http://localhost:8080/
If you want website to use https instead of http, execute
npm run devs
To build the bundle, execute
npm run build
You may want to use local backend application (API server). In that case please visit its repository and follow launch instructions.
Then open this project's config.js
file and locate server
section. Set url to your local API server, for example
server: {
url: 'http://localhost:3000'
}
Please see the CONTRIBUTING.md file for details
This project is licensed under the MIT License - see the LICENSE.md file for details