{"id":13507353,"url":"https://github.com/sivsushruth/consolex","last_synced_at":"2026-02-20T00:31:56.607Z","repository":{"id":57485538,"uuid":"56413485","full_name":"sivsushruth/consolex","owner":"sivsushruth","description":"Consolex is a tool that allows you to attach a web based console to any mix project","archived":false,"fork":false,"pushed_at":"2016-06-10T00:15:37.000Z","size":725,"stargazers_count":125,"open_issues_count":3,"forks_count":10,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-02-15T01:12:46.242Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sivsushruth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-17T01:28:41.000Z","updated_at":"2025-04-24T12:30:10.000Z","dependencies_parsed_at":"2022-09-11T15:02:57.234Z","dependency_job_id":null,"html_url":"https://github.com/sivsushruth/consolex","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sivsushruth/consolex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivsushruth%2Fconsolex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivsushruth%2Fconsolex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivsushruth%2Fconsolex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivsushruth%2Fconsolex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sivsushruth","download_url":"https://codeload.github.com/sivsushruth/consolex/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sivsushruth%2Fconsolex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29637410,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"ssl_error","status_checked_at":"2026-02-19T22:32:38.330Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T02:00:31.895Z","updated_at":"2026-02-20T00:31:56.592Z","avatar_url":"https://github.com/sivsushruth.png","language":"JavaScript","funding_links":[],"categories":["Applications"],"sub_categories":[],"readme":"# Consolex\n\n![MIT License](https://camo.githubusercontent.com/890acbdcb87868b382af9a4b1fac507b9659d9bf/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667) ![Hex Version](https://camo.githubusercontent.com/4b295e051be9db0d5064d4e1563fed4bd985330b/68747470733a2f2f696d672e736869656c64732e696f2f686578706d2f762f636f6e736f6c65782e737667)\n\nConsolex is a tool that allows you to attach a web based console to any mix project.\n\n![Image of console](https://camo.githubusercontent.com/4fdc033fd49f42f5e1b2b43036c672d5a5a2f55c/687474703a2f2f692e696d6775722e636f6d2f4577706c59496e2e706e67)\n\nUse the following mix task to start the server on port **5984**.\n\n```\nmix consolex.server\n```\n\n## Web Console Usage\n\nOpen up **localhost:5984** on your browser and by default, you get a few launch options:\n\n```\niex\niex -S mix\nerl\n```\nYou can choose to provide other shell options as well, like `iex -S mix phoenix.server`.\nOnce the shell is launched, you can start using the editor and hit \"Ctrl/Cmd + Enter\" or click on the provided button to send the code to the running IEx instance and execute it.\n\nConsider a sample input code \n\n```\na = 1 + 2\nb = a + 3\n```\n\nThere are two ways to send the code to the shell for execution and a sample interaction with the shell is as follows\n\n**Single line input(Default)**\n\n```\niex(1)\u003e a = 1 + 2; b = a + 3\n6\n```\n\n**Multiline input**\n\n```\niex(1)\u003e a = 1 + 2\n3\niex(2)\u003e b = a + 3\n6\n```\nClick on the options button to customise the console as per your liking.\n\n__________________________________________________\n\n**Warning: Due to the exposed shell for commands, it is strongly advised to refrain from using this in production environment**\n\n**Warning: This project is still in development and contains bugs. Please help by reporting issues on github**\n__________________________________________________\n\n## Features\n\n* **Web Console**\n* Ability to plug into any existing mix project\n* Multi line IEx command\n* Command history\n* Erl shell (Please set input option as \"multi line\")\n\n## Installation\n\nTo attach the web console to any mix project, just add consolex to your list of dependencies.\n\nAdd consolex to your list of dependencies in `mix.exs` using either\n\n`[{:consolex, \"~\u003e 0.1.0\"}]`\n\n`[{:consolex, git: \"https://github.com/sivsushruth/consolex\"}]`\n\n## Copyright and License\n\nCopyright (c) 2016, Sushruth Sivaramakrishnan.\n\nConsolex source code is licensed under the MIT License.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsivsushruth%2Fconsolex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsivsushruth%2Fconsolex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsivsushruth%2Fconsolex/lists"}