├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── code-of-conduct.md ├── contributing.md └── docs ├── CNAME └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | tags: 8 | - '!*' 9 | pull_request: 10 | 11 | jobs: 12 | build: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v4 16 | - name: Use Node.js 17 | uses: actions/setup-node@v4 18 | with: 19 | node-version: 20 20 | - name: Lint 21 | run: npx awesome-lint@0.2.0 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 2 | 3 | To the extent possible under law, [ceriously.com](https://www.ceriously.com/) has waived all copyright and related or neighboring rights to this work. 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Awesome Online IDE [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 4 | 5 | > A curated list of awesome online implementations of Integrated Development Environments (IDE) 6 | 7 | An ([IDE](https://en.wikipedia.org/wiki/Integrated_development_environment)) is a software application that provides comprehensive facilities to computer programmers for software development. This typically includes a text editor, syntax highlighting, file explorer, debugger, version control, and build/run/deploy options. Another defining feature of an IDE is some form of intelligent code completion, sometimes called [intellisense](https://en.wikipedia.org/wiki/Intelligent_code_completion). 8 | 9 | An "Online IDE" has the features mentioned above but runs in a web browser instead of installing as a native application. An "Online IDE" can be made accessible in offline mode without an internet connection and still satisfy the above conditions. 10 | 11 | ## Contents 12 | 13 | ### Jump to 14 | 15 | - [Full IDE](#full-ide) 16 | - [Snippets](#snippets) 17 | - [Web Snippets](#web-snippets) 18 | 19 | ### Legend 20 | 21 | | Icon | Meaning | 22 | | ------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------- | 23 | | | Open source or source code available | 24 | | | Docker image or other self-hosted option available | 25 | | | Sign-up required before usage | 26 | 27 | 28 | ## Full IDE 29 | 30 | - [GitHub Codespaces](https://github.com/features/codespaces) Run any language with VS Code complete with terminal, debugger, GitHub Copilot, version control, settings sync, and extensions. 31 | - [AWS Cloud9](https://aws.amazon.com/cloud9) [](https://github.com/c9/core) [](https://hub.docker.com/r/cloud9/workspace/) - Run any language on a full VM complete with a terminal built on [Ace Editor](https://ace.c9.io) [](https://github.com/ajaxorg/ace). 32 | - [CodeEnvy](https://codenvy.io) [](https://github.com/codenvy/codenvy) [](https://hub.docker.com/r/codenvy/codenvy) - Run any language on a full VM complete with [Eclipse Che](https://www.eclipse.org/che/) [](https://github.com/eclipse/che) [](https://hub.docker.com/r/eclipse/che/). 33 | - [StackBlitz](https://stackblitz.com) - Run JavaScript with starting templates for Angular, React, or Ionic with full intellisense + instant error checking. 34 | - [CodeSandbox](https://codesandbox.io) [](https://github.com/CompuIves/codesandbox-client) [](https://hub.docker.com/r/codesandbox/client/) - Run JavaScript with starting templates for React, Vue, Angular, Preact and more with full intellisense, lint error checking and live collaborative editing. 35 | - [Snack Expo](https://snack.expo.io) [](https://github.com/expo/snack-sdk) - Run JavaScript with React Native in the browser and on your mobile iOS or Android. 36 | - [Codeanywhere](https://codeanywhere.com) - Run many languages in a container with pre-built environment and a terminal. 37 | - [WebAssembly Studio](https://webassembly.studio) [](https://github.com/wasdk/WebAssemblyStudio) - Run C, Rust, Wat, or AssemblyScript code as WebAssembly in the browser. 38 | - [Remix](http://remix.ethereum.org) [](https://github.com/ethereum/remix) - Run Solidity with a compiler, debugger, Static Analyzer for security, and direct access to Ethereum main network and testing networks. 39 | - [Nativescript Playground](https://play.nativescript.org) - Run NativeScript with Angular, JavaScript, TypeScript, or Vue.js on your mobile iOS or Android device by scanning a QR code. 40 | - [Wide](https://wide.b3log.org) [](https://github.com/88250/wide) - Run Go with full intellisense code-completion, expression-info, and jump to declaration. 41 | - [Glitch](https://glitch.com) - Run full Node.js projects with support for automating hosting, version control, CDN for assets, secure storage of secrets, real-time collaboration, full console access, GitHub import/export, server-side debugger, instant deployments, and more. 42 | - [Theia IDE](https://theia-ide.org) [](https://github.com/eclipse-theia/theia) [](https://github.com/eclipse-theia/theia-ide?tab=readme-ov-file#docker) - Run any language, supports VS Code Extensions, integrates flexible AI Support, based on the [Theia Platform](https://theia-ide.org/theia-platform/), integrates the [Monaco Editor](https://microsoft.github.io/monaco-editor/) [](https://github.com/Microsoft/monaco-editor). 43 | - [Datalore](https://datalore.io) - Run Python notebooks for data analysis and visualization, with real-time collaboration, incremental calculation, and integrated version control. 44 | - [MATLAB Online](https://www.mathworks.com/products/matlab-online.html) - Run MATLAB code, visualize results, share scripts and collaborate on mathematical computing software. 45 | - [Colaboratory](https://research.google.com/colaboratory/) [](https://github.com/googlecolab/colabtools) - Run Python in a Jupyter notebook with ML libraries and free GPUs for running experiments. 46 | - [Coder](https://coder.com) - Run most languages on a full Linux VM complete with a terminal, go-to-definition, linting, live collaboration, and auto-scaling. 47 | - [Gitpod](https://gitpod.io) [](https://github.com/gitpod-io/gitpod) [](https://www.gitpod.io/self-hosted) - Run any language on a full Linux VM complete with terminals, GitHub and Git integration, content assist, go-to-definition, linting, live collaboration, custom Docker workspaces, and integrated code review support. 48 | - [Browxy](https://www.browxy.com) - Run Java, C, C++, C#, Python, or PHP with some syntax highlighting, input arguments, and publish to a public URL. 49 | - [Superblocks Lab](https://superblocks.com/lab) [](https://github.com/SuperblocksHQ/studio) - Run Solidity with a built-in browser Ethereum blockchain VM, Metamask integration (deployments to Testnet/Mainnet), transaction logger and live code your WebApp, powered by Monaco Editor. 50 | - [DrRacket](https://www.rollapp.com/app/drracket) - Run [Racket](https://racket-lang.org) with support for macro debugging. 51 | - [Google Cloud Shell editor](https://cloud.google.com/shell) - Run any language on a full VM complete with a terminal and editor based on [Theia](https://theia-ide.org) . 52 | - [Adaface PairPro](https://www.adaface.com/pair-pro) - Run 24+ programming languages on a shared code editor with compiler and video conferencing, designed for interviews. 53 | - [Repl.it](https://repl.it) - Run over 50 different programming languages in a collaborative IDE with a terminal, webview, and repl that automatically hosts your projects and installs dependencies. 54 | - [Atheos](https://atheos.io) [](https://github.com/Atheos/Atheos) [](https://hub.docker.com/r/hlsiira/atheos) - Run most languages using a PHP/Browser based IDE with a terminal, git integration, and syntax highlighting. 55 | - [HASH](https://hash.ai) - Build and run JavaScript, Python, or Rust multi-agent simulations in the browser. Provides visualization, analysis, and experiment features. 56 | - [goormIDE](https://ide.goorm.io) - Run almost every programming languages with real-time collaboration, live pair programming, and built-in messenger. 57 | - [Dockside](https://dockside.io) [](https://github.com/newsnowlabs/dockside) [](https://hub.docker.com/r/newsnowlabs/dockside) - Self host parallel access-controlled development containers complete with the Theia IDE and terminal, for developing in any language and multiple architectures, within choice of Docker runtimes; stage running code publicly or securely on own domains over HTTPS. 58 | 59 | ## Snippets 60 | 61 | - [Glot](https://glot.io) [](https://github.com/prasmussen/glot-www) [](https://hub.docker.com/r/javierprovecho/glot-www/) - Run snippets from over 30 languages as docker containers including C#, Kotlin, Julia, Go, and Ruby. 62 | - [Codiva](https://www.codiva.io) - Run C, C++, Java snippets with background compilation and some intellisense code-completion. 63 | - [Try It Online](https://tio.run) [](https://github.com/TryItOnline/tryitonline) [](https://hub.docker.com/r/tryitonline/tryitoffline/) - Run snippets from over 300 languages including esoteric code-golf languages. 64 | - [JDoodle](https://www.jdoodle.com) - Run snippets from over 100 languages including Haskell, Prolog, MySQL, and MongoDB. 65 | - [Judge0](https://ide.judge0.com) - Run snippets from over 40 languages including Erlang, Elixir, OCaml and Octave. 66 | - [Ideone](https://ideone.com) - Run snippets from over 60 languages including AWK, Swift, and SQLite. 67 | - [CPP Shell](http://cpp.sh) - Run C++ snippets with input flags for warning level and optimization level. 68 | - [RunKit](https://runkit.com) - Run Node.js snippets + visualizations and share with a public URL. 69 | - [OnlineGDB](https://onlinegdb.com) - Run snippets of C, C++, Java, Python, PHP, HTML with some intellisense code-completion. 70 | - [SQLFiddle](http://sqlfiddle.com) [](https://github.com/zzzprojects/sqlfiddle3) - Run snippets of MySQL, MSSQL, PostgreSQL, SQLite, and Oracle. 71 | - [Go Playground](https://play.golang.org) - Run snippets for Go programming language. 72 | - [Rust Playground](https://play.rust-lang.org) - Run snippets of Rust programming language. 73 | - [TypeScript Playground](https://typescript-play.js.org) [](https://github.com/agentcooper/typescript-play) - Run snippets of TypeScript with tsconfig options and full intellisense. 74 | - [Python Tutor](http://pythontutor.com) - Run snippets of Python, JavaScript, TypeScript, Java, Ruby, C, and C++ code and see detailed step-by-step visualizations of run-time state. 75 | - [Codeboard.io](https://codeboard.io) - Run snippets in C, C++, Eiffel, Haskell, Java, Python, and use tests for automatic grading of code written by students. 76 | - [Kotlin-Playgrounds](https://play.kotlinlang.org) [](https://github.com/JetBrains/kotlin-playground) [](https://github.com/JetBrains/kotlin-playground#installation) - Run Kotlin snippets with auto-completion, type checking and automatically translate Java to Kotlin code. 77 | - [3v4l PHP Playground](https://3v4l.org) - Run PHP snippets on 200+ versions simultaneously with VLD opcodes and performance comparison. 78 | - [PasteRack](http://pasterack.org) [](https://github.com/stchang/pasterack) - Run Racket snippets with support for sample and recent snippets. 79 | - [myCompiler.io](https://www.mycompiler.io) - Run snippets from over 12 languages including C, C++, Java, Python, Ruby, Nodejs and more with auto code-completion, syntax highlighting, collaboration features like forking, commenting and sharing of code snippets. 80 | - [.NET Fiddle](https://dotnetfiddle.net) - Run C#, F# and VB.net snippets with NuGet Packages. 81 | - [Scastie](https://scastie.scala-lang.org) [](https://github.com/scalacenter/scastie) - Run Scala snippets with support of choosing different Scala versions, using any public library, configuring SBT settings, sharing a code snippet, embedding it into your website, etc. 82 | - [Free Code Compiler](https://www.freecodecompiler.com) - Run snippets from over 19 languages including C, C++, Java, Python, Go, Swift, Lua, and more with syntax highlighting, stdin, and recent snippets. 83 | 84 | ### Web Snippets 85 | 86 | - [CodePen](https://codepen.io) - Run snippets in HTML/CSS/JS, popular with designers. 87 | - [JS Bin](https://jsbin.com) [](https://github.com/jsbin/jsbin) [](https://hub.docker.com/r/euprogramador/jsbin/) - Run snippets in HTML/CSS/JS/TS, provides [Codecasting](https://remysharp.com/2013/11/14/what-is-codecasting/). 88 | - [JSFiddle](https://jsfiddle.net) - Run snippets in HTML/CSS/JS and collaborate in real-time. 89 | - [Flems](https://flems.io) [](https://github.com/porsager/flems) - Run snippets in HTML/CSS/JS without a connection to the server (after page load). 90 | - [Plunker](https://plnkr.co) - Run snippets in HTML/CSS/JS/TS and collaborate by forking, commenting, and participating in the forums. 91 | - [Popcode](https://popcode.org) [](https://github.com/popcodeorg/popcode) - Run snippets in HTML/CSS/JS for use in the classroom, with student-friendly error messages and offline editing. 92 | - [LiveCodes](https://livecodes.io) [](https://github.com/live-codes/livecodes) [](https://livecodes.io/docs/features/self-hosting) - Run snippets in 90+ languages/frameworks, including React, Vue, Svelte, Solid, Typescript, Python, Go, Ruby, PHP and many more. Runs client-side with no backend. Projects can be shared, exported, deployed and embedded. Free AI code assistant. 93 | 94 | ## Contribute 95 | 96 | Contributions welcome! Read the [contribution guidelines](contributing.md) and [code of conduct](code-of-conduct.md) first. 97 | 98 | ## License 99 | 100 | [![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 101 | 102 | To the extent possible under law, styfle has waived all copyright and related or neighboring rights to this work. 103 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | education, socio-economic status, nationality, personal appearance, race, 10 | religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at . All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Thanks for contributing! :+1: 4 | 5 | You are a superstar! :star: 6 | 7 | ## Adding to this list 8 | 9 | 1. Edit the `README.md` file 10 | 2. Add a new line for your Online IDE or Snippet at the bottom of the appropriate section 11 | 3. Add a hyperlink to the IDE's website, use the following format: `[List Name](link)` 12 | 4. Add the GitHub logo after the name if the code is open source, like so: 13 | - The GitHub logo should link to the GitHub repository or similar source code repository 14 | 5. Add the Docker logo after the name if the code is capable of self hosting, like so: 15 | - The Docker logo should link to the Docker Hub repository or similar self-hosting instructions 16 | 6. Add the Sign Up logo after the name if the IDE requires the user to sign up before using, like so: 17 | 7. Add a short description for the IDE 18 | - Begin with the word "Run" followed by the primary language or technology, (i.e. Run Python...) 19 | - Explain how this IDE is different/better than the competition 20 | - Be concise—avoid adjectives like "fast" or "full-featured" 21 | - Be more consise—avoid multiple sentences and follow the convention used for other descriptions in this document 22 | - End with a period—even though it is not a complete sentence, Awesome lists must end with a period 23 | 8. Create a Pull Request with the name of the IDE in the title, such as "Add CoderBoxIDE" 24 | 9. Add some details in the body of the Pull Request about how to use, what sets it apart, etc 25 | 10. Check your spelling and grammar 26 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | ide.ceriously.com 2 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Page Moved 6 | 7 | 8 | This page has moved to styfle.dev. 9 | 10 | 11 | --------------------------------------------------------------------------------