You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Babel and Prettier, and Flow, all have online REPLs that allow you to copy/paste a link with the configuration and code that was entered, for easy viewing by other people.
This is facilitated by encoding the state of the playground into query string parameters, so that there's no server-side state needed.
Both Prettier and Babel take it a step further and compress the state with zlib (then base64), so that the query string becomes shorter. We would probably also need to do that.
So, the workflow I'm thinking of:
hit Share
pick Copy as Link
copy the link
paste into browser
if the ID exists, open that student? or notify? should the existing student be updated?
if the ID does not exist, import/persist the new student and open it, handling import errors in the UI
The text was updated successfully, but these errors were encountered:
This came out of a bit of discussion in #2225
Prior art
prettier:
babel:
Babel and Prettier, and Flow, all have online REPLs that allow you to copy/paste a link with the configuration and code that was entered, for easy viewing by other people.
This is facilitated by encoding the state of the playground into query string parameters, so that there's no server-side state needed.
Both Prettier and Babel take it a step further and compress the state with zlib (then base64), so that the query string becomes shorter. We would probably also need to do that.
So, the workflow I'm thinking of:
The text was updated successfully, but these errors were encountered: