Mesh: December 2017 Update
Mesh is an attempt to achieve a better "power to UI" trade-off in programming.
The last few months have seen design changes to improve that trade-off further, beyond the version posted to Reddit and Hacker News. Try the updated version here.
Major changes since July release
The two major changes move the Mesh UI closer to how people would normally use a spreadsheet, while preserving the readability and import
ability of the JS code output.
First, Mesh now writes code as an object literal format. By using getters for anything that's not a literal:
- we don't need to worry about the order of definition of variables
- a consumer of data doesn't need to worry about whether the input is a literal or a formula (in other words, we don't need to explicitly
call()
formulas).
Second, to make it easier to enter data, Mesh transforms non-formula text. For example, you don't need to put quotes around text to enter a string — Mesh will guess your intention and do that for you. Effectively, prepending a formula with =
means the rest of the commit is interpreted as 'raw' JS.
I am trying to keep the codebase within 2000 lines, and ideally within 1500. So far so good — it's around 1900 and there is decent low hanging fruit for further reductions.
Next steps
The downside of using object literals as the format for JS code output is that references are unnecessarily verbose:
The messiest part is variable refs being prefaced with 'MODULE' or 'this' (see https://t.co/PxTl3UwsN0) - hoping this can be handled via UI, maybe you click on the cell instead of typing the ref in
— Mesh IDE (@mesh_ide) 18 December 2017
I would also like to allow users to enter data without needing to name it first. That may require anonymous IDs for code that can optionally be upgraded to names chosen by the user. I don't want to require the user to impose structure early in the problem-solving process if it can be avoided: a spreadsheet is a good scratch-pad for quick, unstructured calcs, and maybe Mesh can reduce the barriers to entry for coding by supporting a similar workflow.
Both of the above could be handled with UI (eg click on the data you want to reference when entering a formula, and Mesh will insert the right ID). However, I am not certain this is a good idea:
- users may end up with messy spreadsheets, which are harder to impose structure on later
- it may also be harder for 'regular' JS programmers to determine the file's API if read as plain text.
I am also not sure about the best way to impose more complicated data structures, such as tables. Initial thinking was to specify data structures with HTML tags, but thinking it through more, I don't want to compromise the efficiency or familiarity of a grid interface.
My current thinking is that Mesh will require more complicated data structures to be explicitly decared via buttons or keyboard shortcuts (like how Excel requires listobjects or pivot tables to be explicitly declared). That would potentially work well with a currently pie-in-the-sky idea to allow cells to be grouped together visually and be 'promoted' to a higher-level data structure (such as an array or object), and vice versa (this is also a solution to #1 of the two risks above).
There are also some 'elbow grease' changes required:
- bug fixes
- importing JS/JSON/CSV (allowing it to be hard-coded in the file but update triggered manually by the user if desired)
- a better formula bar
- drag around data on the grid, and cut/copy/paste
- saving and loading (already exists for the Electron version but I want a solution for the web browser version)
- eventually, an IE11-compatible version that provides JScript functionality, including access to Office APIs.