Skip to content

Commit b2ea80e

Browse files
committed
wording: playground not demo
1 parent 06ac0c2 commit b2ea80e

File tree

7 files changed

+1833
-86
lines changed

7 files changed

+1833
-86
lines changed

.env.production

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VITE_SITE_URL=https://quesmaorg.github.io/demo-webr-ggplot/
2-
VITE_OG_IMAGE=https://quesmaorg.github.io/demo-webr-ggplot/webr-ggplot2-screenshot.png
1+
VITE_SITE_URL=https://quesmaorg.github.io/webr-ggplot-playground/
2+
VITE_OG_IMAGE=https://quesmaorg.github.io/webr-ggplot-playground/webr-ggplot2-screenshot.png

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# WebR ggplot2 Demo
1+
# WebR ggplot2 Playground
22

33
Interactive R data visualization in the browser using [WebR](https://webr.r-wasm.org/) (R in WebAssembly) and [ggplot2](https://ggplot2.tidyverse.org/) (the best charting library ever).
44

5-
![WebR ggplot2 Demo Screenshot](./public/webr-ggplot2-screenshot.png)
5+
![WebR ggplot2 Playground Screenshot](./public/webr-ggplot2-screenshot.png)
66

77
## What is it?
88

9-
A web application that runs R code directly in your browser - no server required. Features live code editing, CSV upload, and interactive plots. Try it online at [quesmaorg.github.io/demo-webr-ggplot](https://quesmaorg.github.io/demo-webr-ggplot/).
9+
A web application that runs R code directly in your browser - no server required. Features live code editing, CSV upload, and interactive plots. Try it online at [quesmaorg.github.io/webr-ggplot-playground](https://quesmaorg.github.io/webr-ggplot-playground/).
1010

1111
For more context, see [our recent blog post on sandboxing AI-generated code](https://quesma.com/blog-detail/sandboxing-ai-generated-code-why-we-moved-from-webr-to-aws-lambda).
1212

@@ -21,8 +21,8 @@ Prerequisites:
2121

2222
```bash
2323
# Clone repository
24-
git clone https://github.com/QuesmaOrg/demo-webr-ggplot.git
25-
cd demo-webr-ggplot
24+
git clone https://github.com/QuesmaOrg/webr-ggplot-playground.git
25+
cd webr-ggplot-playground
2626

2727
# Install dependencies
2828
pnpm install

index.html

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,40 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<link rel="icon" href="/favicon.ico">
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>WebR ggplot2 & dplyr Demo</title>
8-
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>WebR ggplot2 Playground</title>
8+
99
<!-- Primary Meta Tags -->
10-
<meta name="title" content="WebR ggplot2 & dplyr Demo">
11-
<meta name="description" content="Interactive R data visualization in your browser with ggplot2 and dplyr. No server required - powered by WebAssembly.">
12-
10+
<meta name="title" content="WebR ggplot2 Playground" />
11+
<meta
12+
name="description"
13+
content="Interactive R data visualization in your browser with ggplot2 and dplyr. No server required - powered by WebAssembly."
14+
/>
15+
1316
<!-- Open Graph / Facebook -->
14-
<meta property="og:type" content="website">
15-
<meta property="og:url" content="%VITE_SITE_URL%">
16-
<meta property="og:title" content="WebR ggplot2 & dplyr Demo">
17-
<meta property="og:description" content="Interactive R data visualization in your browser with ggplot2 and dplyr. No server required - powered by WebAssembly.">
18-
<meta property="og:image" content="%VITE_OG_IMAGE%">
19-
17+
<meta property="og:type" content="website" />
18+
<meta property="og:url" content="%VITE_SITE_URL%" />
19+
<meta property="og:title" content="WebR ggplot2 Playground" />
20+
<meta
21+
property="og:description"
22+
content="Interactive R data visualization in your browser with ggplot2 and dplyr. No server required - powered by WebAssembly."
23+
/>
24+
<meta property="og:image" content="%VITE_OG_IMAGE%" />
25+
2026
<!-- Twitter -->
21-
<meta property="twitter:card" content="summary_large_image">
22-
<meta property="twitter:url" content="%VITE_SITE_URL%">
23-
<meta property="twitter:title" content="WebR ggplot2 & dplyr Demo">
24-
<meta property="twitter:description" content="Interactive R data visualization in your browser with ggplot2 and dplyr. No server required - powered by WebAssembly.">
25-
<meta property="twitter:image" content="%VITE_OG_IMAGE%">
27+
<meta property="twitter:card" content="summary_large_image" />
28+
<meta property="twitter:url" content="%VITE_SITE_URL%" />
29+
<meta property="twitter:title" content="WebR ggplot2 Playground" />
30+
<meta
31+
property="twitter:description"
32+
content="Interactive R data visualization in your browser with ggplot2 and dplyr. No server required - powered by WebAssembly."
33+
/>
34+
<meta property="twitter:image" content="%VITE_OG_IMAGE%" />
2635
</head>
2736
<body>
2837
<div id="app"></div>
2938
<script type="module" src="/src/main.ts"></script>
3039
</body>
31-
</html>
40+
</html>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "webr-ggplot2-demo",
2+
"name": "webr-ggplot2-playground",
33
"private": true,
44
"version": "0.2.12",
55
"type": "module",

0 commit comments

Comments
 (0)