- 03 Apr 2024
- 1 Minute to read
- DarkLight
- PDF
Choosing an IDE
- Updated on 03 Apr 2024
- 1 Minute to read
- DarkLight
- PDF
Setting up your IDE
An IDE, which stands for Integrated Development Environment, is like a text editor, but with added features to help you while programming. For writing Scrypto code you will need to install an IDE with rust support (because Scrypto is built on top of Rust). After installing the Scrypto toolchain and rust compiler you are ready to configure your IDE to start programming.
VSCode
For the IDE, we highly recommend you choose VSCode. Here are the steps you should take to set it up.
Start by installing VSCode by following the instructions here.
Install the rust-analyzer
and Radix Developer Tools
extensions. This will give you syntax highlighting and code suggestion while you write your Scrypto code and manifests.
Click on the extension icon on the left panel:
Search for "rust-analyzer"
Click on install
Search for "Radix Developer Tools"
Click on Install
You are now ready to start writing your first Scrypto blueprint. Head over to the Run Your First Project page to start.