-
-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancement: In REPL mode read bytes from file #279
Comments
Thanks for proposing a new feature. I want to suggest some points about implementation. So, how about specifying files by using path/filepath representation just like |
Great suggestions thank you! I agree using a relative filepath will be better instead of the full path in terms of usability. with regards to:
should we add a flag that will by default interpret the input to |
We should, it's better than adding a flag that disables flag interpretation 👍 I think it's better to define a flag that belongs to the REPL |
I will update the PR accordingly :) |
PR updated :) |
Merged in #280 |
Thanks for an awesome tool :)
While working on a new feature I needed to be able to send binary data. The existing support using JSON and base64 encoding is great, however I feel we can improve the REPL with the following change:
When prompted for
TYPE_BYTES
allow the user to specify a path to a file which is then read in.For example:
data (TYPE_BYTES) => file:///full/path/to/file.txt
I have also created a pull request: #280 with this suggested change.
The text was updated successfully, but these errors were encountered: