Choosing an IDE wisely
Developing a distributed application often requires the developer to interact with multiple tools and languages. There are efficient Integrated Development Environments (IDE) that can help you accomplish most of the work related to developing an application. IDEs usually combine code editors, compilers, debuggers, and other useful tools. Some may find it comfortable using a simple text editor and related command-line tools for development.
In this recipe, you will learn about a few tools that can support Ethereum development.
How to do it...
One of the most popular and widely used IDEs for solidity is Remix. Let's see how you can use it for your development:
- Access Remix by navigating to https://remix.ethereum.org. Remix is a web-based IDE that you can use to write, test, debug, and deployyoursmart contracts.
- Use the file view from the left panel to create and delete files. Use the right-hand panel for tools that will help your development. Write code in the editor window...