[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-10555":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":10,"languages":10,"totalLinesOfCode":10,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":15,"stars30d":16,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":17,"rankGlobal":10,"rankLanguage":10,"license":18,"archived":19,"fork":19,"defaultBranch":20,"hasWiki":19,"hasPages":21,"topics":22,"createdAt":10,"pushedAt":10,"updatedAt":33,"readmeContent":34,"aiSummary":35,"trendingCount":15,"starSnapshotCount":15,"syncStatus":36,"lastSyncTime":37,"discoverSource":38},10555,"remix-ide","remix-project-org\u002Fremix-ide","remix-project-org","Documentation for Remix IDE","https:\u002F\u002Fremix-ide.readthedocs.io",null,2342,964,111,12,0,3,61.25,"Apache License 2.0",false,"master",true,[23,24,25,26,27,28,29,5,30,31,32],"blockchain","debugging","debugging-tool","documentation","ethereum","evm","remix","smart-contracts","solidity","vyper","2026-06-12 04:00:51","[![Documentation Status](https:\u002F\u002Freadthedocs.org\u002Fprojects\u002Fdocs\u002Fbadge\u002F?version=latest)](https:\u002F\u002Fremix-ide.readthedocs.io\u002Fen\u002Flatest\u002Findex.html)\n[![contributions welcome](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fcontributions-welcome-brightgreen.svg?style=flat)](https:\u002F\u002Fgithub.com\u002Fremix-project-org\u002Fremix-ide)\n\n# Remix\n\nThis repository contain only Remix's official [Read the Docs](https:\u002F\u002Freadthedocs.org\u002F) documentation source code. The documentation can be found on the [Remix IDE documentation site](https:\u002F\u002Fremix-ide.readthedocs.io\u002Fen\u002Flatest\u002F).\n\n## Remix Project Codebases\n\nRemix Docs (this repo)\n\n- GitHub repo: https:\u002F\u002Fgithub.com\u002Fremix-project-org\u002Fremix-ide\u002F\n- Website URL: https:\u002F\u002Fremix-ide.readthedocs.io\u002Fen\u002Flatest\u002F\n\nRemix IDE\n\n- GitHub repo: https:\u002F\u002Fgithub.com\u002Fremix-project-org\u002Fremix-project\n- Website URL: https:\u002F\u002Fremix.ethereum.org\n\nRemix About page\n\n- GitHub repo: https:\u002F\u002Fgithub.com\u002Fremix-project-org\u002Fremix-website\u002F\n- Website URL: https:\u002F\u002Fremix.live\n\n## About Remix Project\n\nThe **Remix Project** is a platform for development tools that use a plugin architecture. It encompasses sub-projects including Remix Plugin Engine, Remix Libraries, and of course Remix IDE.\n\nThe **Remix IDE** is an open source web and desktop application. It fosters a fast development cycle and has a rich set of plugins with intuitive GUIs. Remix is used for the entire journey of contract development with Solidity language as well as a playground for learning and teaching Ethereum.\n\nYou can start developing with Remix on the browser by visiting: https:\u002F\u002Fremix.ethereum.org. If you prefer a desktop version, check out: https:\u002F\u002Fgithub.com\u002Fremix-project-org\u002Fremix-desktop.\n\n![Remix IDE homepage](remix_screenshot.jpg)\n\nThe built-in plugins in Remix IDE are built on top of **Remix libraries**, which handle core operations like compiling and interacting with smart contracts.. Explore the [Remix libraries README](https:\u002F\u002Fgithub.com\u002Fremix-project-org\u002Fremix-project\u002Fblob\u002Fmaster\u002Flibs\u002FREADME.md) to learn more.\n\n## Setup the Documentation Locally\n\nTo run this documentation locally, clone this repository by running the command below:\n\n```shell\ngit clone https:\u002F\u002Fgithub.com\u002Fremix-project-org\u002Fremix-ide\n```\n\nIn your cloned directory, `cd` into the `docs` folder and run the command below:\n\n```shell\nmake run\n```\n\n## Contributing\n\nWe wholeheartedly welcome everyone to contribute. Suggestions, issues, queries and feedback are our pleasure. Please join our [Discord](https:\u002F\u002Fdiscord.gg\u002FsnsrYVU4Q7) server.\n\n### Translating\n\nThe site is internationalized. **Do not make any corrections to .po or .pot files.** These get handled in our translation management platform Crowdin. To help with the translation of our documentation, please visit https:\u002F\u002Fcrowdin.com\u002Fproject\u002Fremix-translation. To help with our translations of Remix's UI, please visit https:\u002F\u002Fcrowdin.com\u002Fproject\u002Fremix-ui.\n\n## Custom theming\n\nThe documentation is built using Sphinx and the Read the Docs theme as a base. The theme has been customized using CSS overrides and JavaScript to built on top of the base theme.\n\n**conf.py**\n\n```py\nhtml_js_files = [\n    \"js\u002Fconstants.js\",\n    \"js\u002Futils.js\",\n    \"js\u002Floaders.js\",\n    \"js\u002Finitialize.js\"\n]\n\nhtml_css_files = [\"css\u002Ffonts.css\", \"css\u002Ftokens.css\", \"css\u002Fcustom.css\"]\n```\n\nThese `js` and `css` files are been declared to run once the initial theming has been applied.\n\n| File (`docs\u002F_static\u002F`) | Description                                                                                                                                                                 |\n| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| **constants.js**       | Contains all JavaScript constants to be used throughout the other scripts.                                                                                                  |\n| **utils.js**           | Contains all utility\u002Fhelper functions to be used throughout the other scripts.                                                                                              |\n| **loaders.js**         | Contains primary logic for all the loading scripts, organized by `initialize.js`.                                                                                           |\n| **initialize.js**      | Contains high-level script logic. Declares order of `loader.js` functions to be run during `onDOMContentLoaded` (immediately after the initial DOM content has been loaded) |\n| **css\u002Ffonts.css**      | Contains all font imports and declarations.                                                                                                                                 |\n| **css\u002Ftokens.css**     | Contains all CSS theming variables and tokens used throughout the other CSS files.                                                                                          |\n| **css\u002Fcustom.css**     | Contains all custom CSS overrides and theming. This uses existing CSS selectors from the Sphinx theming to select and override various styling.                             |\n","Remix IDE 是一个开源的网页和桌面应用程序，专为以太坊智能合约开发设计。它提供了一个快速的开发环境，并集成了丰富的插件，具有直观的图形用户界面，支持 Solidity 和 Vyper 语言编写、调试及部署智能合约。核心功能包括智能合约编译、调试工具以及与以太坊虚拟机（EVM）交互等。适用于区块链开发者进行智能合约全生命周期管理，同时也适合教育机构和个人作为学习以太坊技术的实验平台使用。",2,"2026-06-11 03:29:06","top_topic"]