webclient icon indicating copy to clipboard operation
webclient copied to clipboard

web based terminal application for executing local and remote commands

Results 44 webclient issues
Sort by recently updated
recently updated
newest added

The suggestions panel can be a bit overwhelming because all the syntax rules for a command are included. For example the suggestions for input: ``` get ``` Are: ``` io.fugazi.net.http...

todo
improvment

Given a list or map: ``` arr = [1, 2, 3] map = { str: "string", num: 4 } ``` There's no way to access the items in the collections....

feature
improvment
discussion

The api will allow local commands to execute other existing commands. Should probably be exposed through the `Context`. The api should take the (named) parameters defined in the command and...

feature

create a tutorial page for using the terminal

todo
documentation

For example "list commands in io.fugazi" should show all commands within it's 8 submodules (core, strings, numbers, collections, ...)

improvment

added Math.ceil to the computation and changed from `===` to `>=`. also updated the version of the "perfect-scrollbar" and removed usage of `ReactDOM.findDOMNode` (in favor of ref)

Examples: list: ``` [1, 2, 3] + [4, 5] // is [1, 2, 3, 4, 5] [1, 2, 3] - [2, 4] // is [1, 3] ``` map: ``` {...

feature
improvment
discussion

This should work: ``` load module from "http://localhost:63342/webclient/modules/scripts/bin/math.js" "4" + 4 ``` But instead: > None of the statements is executable The same with: ``` a = "3" $a +...

feature
improvment