Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Remix Ide | 2,141 | 10 | 3 | 2 days ago | 44 | July 13, 2020 | 2 | mit | ||
Documentation for Remix IDE | ||||||||||
Remix Project | 1,952 | 6 | 12 hours ago | 18 | June 06, 2022 | 679 | mit | TypeScript | ||
Remix is a browser-based compiler and IDE that enables users to build Ethereum contracts with Solidity language and to debug transactions. | ||||||||||
Remix | 1,059 | 51 | 25 | 2 years ago | 81 | June 26, 2020 | 22 | mit | JavaScript | |
This has been moved to https://github.com/ethereum/remix-project | ||||||||||
Cakeshop | 509 | a year ago | 25 | apache-2.0 | JavaScript | |||||
An integrated development environment and SDK for Ethereum-like ledgers | ||||||||||
Buidl | 361 | a year ago | 27 | gpl-3.0 | Vue | |||||
A browser-based IDE for creating, deploying, and sharing blockchain apps (DApps, or decentralized apps). Publish your first blockchain DApps in 5 minutes! Here is how: https://docs.secondstate.io/buidl-developer-tool/getting-started | ||||||||||
Remix App | 185 | a year ago | 23 | JavaScript | ||||||
Ethereum Remix Solidity IDE, electron edition | ||||||||||
Ethereum Studio | 141 | 2 years ago | 54 | gpl-3.0 | TypeScript | |||||
Official Ethereum Studio project repository. And IDE specially tailored to make it as simple as possible to onboard new users into the Ethereum ecosystem | ||||||||||
Superblocks Lab | 100 | 6 months ago | 99 | gpl-3.0 | JavaScript | |||||
Superblocks Lab for DApp development | ||||||||||
Solidity Ide | 72 | 2 years ago | 58 | epl-1.0 | Java | |||||
Solidity plugin for Eclipse | ||||||||||
Solidity Ide | 69 | 2 years ago | 8 | September 08, 2020 | 1 | mit | Vue | |||
A simple alternative to Remix IDE to develop and test Solidity Smart Contracts |
Remix Project is a rich toolset including Remix IDE, a comprehensive smart contract development tool. The Remix Project also includes Remix Plugin Engine and Remix Libraries which are low-level tools for wider use.
Remix IDE is used for the entire journey of contract development by users of any knowledge level. It fosters a fast development cycle and has a rich set of plugins with intuitive GUIs. The IDE comes in 2 flavors and a VSCode extension:
Remix Online IDE, see: https://remix.ethereum.org
👉 Supported browsers: Firefox v100.0.1 & Chrome v101.0.4951.64. No support for Remix's use on tablets or smartphones or telephones.
Remix Desktop IDE, see releases: https://github.com/ethereum/remix-desktop/releases
VSCode extension, see: Ethereum-Remix
Remix libraries are essential for Remix IDE's native plugins. Read more about libraries here
The gh-pages
branch of remix-live always has the latest stable build of Remix. It contains a ZIP file with the entire build. Download it to use offline.
Note: It contains the latest supported version of Solidity available at the time of the packaging. Other compiler versions can be used online only.
"engines": {
"node": "^20.0.0",
"npm": "^6.14.15"
}
yarn global add nx
wget
need to be installed first):git clone https://github.com/ethereum/remix-project.git
remix-project
:cd remix-project
yarn install
yarn run build:libs // Build remix libs
nx build
nx serve
Open http://127.0.0.1:8080
in your browser to load Remix IDE locally.
Go to your text editor
and start developing. The browser will automatically refresh when files are saved.
To generate react production builds for remix-project.
yarn run build:production
Build can be found in remix-project/dist/apps/remix-ide
directory.
yarn run serve:production
Production build will be served by default to http://localhost:8080/
or http://127.0.0.1:8080/
Prerequisites:
If you want to run the latest changes that are merged into the master branch then run:
docker pull remixproject/remix-ide:latest
docker run -p 8080:80 remixproject/remix-ide:latest
If you want to run the latest remix-live release run.
docker pull remixproject/remix-ide:remix_live
docker run -p 8080:80 remixproject/remix-ide:remix_live
To run locally without building you only need docker-compose.yaml file and you can run:
docker-compose pull
docker-compose up -d
Then go to http://localhost:8080 and you can use your Remix instance.
To fetch the docker-compose file without cloning this repo run:
curl https://raw.githubusercontent.com/ethereum/remix-project/master/docker-compose.yaml > docker-compose.yaml
If you have trouble building the project, make sure that you have the correct version of node
, npm
and nvm
. Also, ensure Nx CLI is installed globally.
Run:
node --version
npm --version
nvm --version
In Debian-based OS such as Ubuntu 14.04LTS, you may need to run apt-get install build-essential
. After installing build-essential
, run npm rebuild
.
Run the unit tests using library name like: nx test <project-name>
For example, to run unit tests of remix-analyzer
, use nx test remix-analyzer
To run the Selenium tests via Nightwatch:
Install Selenium for the first time: yarn run selenium-install
Run a selenium server: yarn run selenium
Build & Serve Remix: nx serve
Run all the end-to-end tests:
for Firefox: yarn run nightwatch_local_firefox
, or
for Google Chrome: yarn run nightwatch_local_chrome
Run a specific test case instead, use a command like this:
- yarn run nightwatch_local_ballot
The package.json file contains a list of all the tests you can run.
NOTE:
The ballot
tests suite requires running ganache-cli
locally.
The remixd
tests suite requires running remixd
locally.
The gist
tests suite requires specifying a GitHub access token in .env file.
gist_token = <token> // token should have permission to create a gist
There is a script to allow selecting the browser and a specific test to run:
yarn run select_test
You need to have
selenium running
the IDE running
optionally have remixd or ganache running
Groups can be used to group tests in a test file together. The advantage is you can avoid running long test files when you want to focus on a specific set of tests within a test file.x
These groups only apply to the test file, not across all test files. So for example group1 in the ballot is not related to a group1 in another test file.
Running a group only runs the tests marked as belonging to the group + all the tests in the test file that do not have a group tag. This way you can have tests that run for all groups, for example, to perform common actions.
There is no need to number the groups in a certain order. The number of the group is arbitrary.
A test can have multiple group tags, this means that this test will run in different groups.
You should write your tests so they can be executed in groups and not depend on other groups.
To do this you need to:
'Should generate test file #group1': function (browser: NightwatchBrowser) {
browser.waitForElementPresent('*[data-id="verticalIconsKindfilePanel"]')
module.exports = {
'@disabled': true,
before: function (browser: NightwatchBrowser, done: VoidFunction) {
init(browser, done) // , 'http://localhost:8080', false)
},
"nightwatch_local_debugger": "yarn run build:e2e && nightwatch --config dist/apps/remix-ide-e2e/nightwatch.js dist/apps/remix-ide-e2e/src/tests/debugger_*.spec.js --env=chrome",
yarn run build:e2e
You can tag any test with a group name, for example, #group10 and easily run the test locally.
This script will give you an options menu, just select the test you want
yarn run select_test
yarn run group_test --test=debugger --group=10 --env=chromeDesktop
In CircleCI all tests are divided across instances to run in parallel. You can also run 1 or more tests simultaneously across all instances. This way the pipeline can easily be restarted to check if a test is flaky.
For example:
'Static Analysis run with remixd #group3 #flaky': function (browser) {
Now, the group3 of this test will be executed in firefox and chrome 80 times. If you mark more groups in other tests they will also be executed.
CONFIGURATION
It's important to set a parameter in the .circleci/config.yml, set it to false then the normal tests will run. Set it to true to run only tests marked with flaky.
parameters:
run_flaky_tests:
type: boolean
default: true