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
@@ -388,7 +388,7 @@ After loading, the resulting web page should present an interactive R console si
388
388
</div>
389
389
</div>
390
390
<script type="module">
391
-
import { Console } from 'https://webr.r-wasm.org/v0.3.2/webr.mjs';
391
+
import { Console } from 'https://webr.r-wasm.org/{{< env WEBR_VERSION_TAG >}}/webr.mjs';
392
392
const webRConsole = new Console({
393
393
stdout: line => document.getElementById('out').append(line + '\n'),
394
394
stderr: line => document.getElementById('out').append(line + '\n'),
@@ -434,7 +434,7 @@ Using the [`plotly`](https://plotly.com/r/getting-started/) R package, `ggplot2`
Copy file name to clipboardexpand all lines: src/docs/serving.qmd
+5-4
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,8 @@ The following simple R script will serve files locally from the current working
25
25
26
26
```{r eval=FALSE}
27
27
library(httpuv)
28
-
runServer(host = "127.0.0.1", port = 8080,
28
+
runServer(
29
+
host = "127.0.0.1", port = 8080,
29
30
app = list(
30
31
staticPaths = list(
31
32
"/" = staticPath(
@@ -53,7 +54,7 @@ Interruption of running R code and nested R REPLs (`readline()`, `menu()`, `brow
53
54
Enable the `PostMessage` communication channel by explicitly setting [`WebROptions.channelType`](api/js/interfaces/WebR.WebROptions.md#channeltype) during webR initialisation:
0 commit comments