Replies: 2 comments 1 reply
-
Pinging in @isodor here, a PM on VS Code who feels strongly about VS Code Web. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Stumbled across this when figuring out a different issue, but I'm curious what's different about VSCode Web. I have no issue using Calva on Github Codespaces and Gitpod (both use VSCode Web) - is the difference that these are hosted containers? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I think it would be very powerful to let people try out scripting VS Code without even installing it. I'm imagining these steps:
The Hello World example contains some instructions similar to the Getting Started with Calva for how to evaluate code. The code does some silly things with VS Code.
The example also has some links to videos and other material on how to levarage Joyride.
For this to work we need to solve one small (I think) problem and one big one.
The big problem has not been so interesting to solve before, because there hasn't been a REPL that we could run in VS Code Web. Now, if we solve the small problem, we have one.
Even if I think the problem with making Joyride work in the Web version of VS Code is not so big, I haven't succeeded when I have experimented with it.
In the experiment/web-vscode-joyride branch:
out/joyride.js
.release
is configured to do:simple
optimizations (not necessary I think, I just want to be able to read the generated one-file)When launching this I first do a
shadow-cljs release
and then launch. But the extension fails to load with this stack trace:In the guide for Web Extension i find:
I think the error I see is because we require
path
andos
and other things. But I am not savvy enough to understand how we would go ahead add these with the tool chain we have (shadow-cljs).Now I am unsure about what the next step here would be.
Beta Was this translation helpful? Give feedback.
All reactions