Consolex alternatives and similar packages
Based on the "Applications" category.
Alternatively, view Consolex alternatives based on common mentions on social networks and blogs.
-
Logflare
Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript. -
CaptainFact
🔎 CaptainFact - API. The one that serves and process all the data for https://captainfact.io -
Startup Job
An app to search startup jobs scraped from websites written in Elixir, Phoenix, React and styled-components. -
Exon
Exon is a “mess manager” developed in Elixir and provides a simple API to manage & document your stuff. -
medex
Medical Examination - application for register health check callbacks and represent their state via HTTP. -
chat
💬 CHAT: Instant Messenger. ISO/IEC: 20922; ITU/IETF: 3394, 3565, 5280, 5480, 5652, 5755 8551, X.509, CMS, PKCS-10, PCKS-7, OCSP, LDAP, DNS; ANSI: X9-42, X9-62, X25519, X488; NIST: SECP384r1. -
majremind
A self-maintained database of your updated server which tells you which one needs to be updated.
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of Consolex or a related project?
README
Consolex
Consolex is a tool that allows you to attach a web based console to any mix project.
Use the following mix task to start the server on port 5984.
mix consolex.server
Web Console Usage
Open up localhost:5984 on your browser and by default, you get a few launch options:
iex
iex -S mix
erl
You can choose to provide other shell options as well, like iex -S mix phoenix.server
.
Once 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.
Consider a sample input code
a = 1 + 2
b = a + 3
There are two ways to send the code to the shell for execution and a sample interaction with the shell is as follows
Single line input(Default)
iex(1)> a = 1 + 2; b = a + 3
6
Multiline input
iex(1)> a = 1 + 2
3
iex(2)> b = a + 3
6
Click on the options button to customise the console as per your liking.
Warning: Due to the exposed shell for commands, it is strongly advised to refrain from using this in production environment
Warning: This project is still in development and contains bugs. Please help by reporting issues on github
Features
- Web Console
- Ability to plug into any existing mix project
- Multi line IEx command
- Command history
- Erl shell (Please set input option as "multi line")
Installation
To attach the web console to any mix project, just add consolex to your list of dependencies.
Add consolex to your list of dependencies in mix.exs
using either
[{:consolex, "~> 0.1.0"}]
[{:consolex, git: "https://github.com/sivsushruth/consolex"}]
Copyright and License
Copyright (c) 2016, Sushruth Sivaramakrishnan.
Consolex source code is licensed under the MIT License.
*Note that all licence references and agreements mentioned in the Consolex README section above
are relevant to that project's source code only.