Skip to content

Commit a46a317

Browse files
staredclaude
andcommitted
Add context links and clarify no-server architecture
- Update header subtitle to emphasize browser-only execution - Add link to blog post explaining migration from WebR to AWS Lambda - Add GitHub Pages demo link to README - Consolidate license and author info into single line 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent e1bf2c4 commit a46a317

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@ Interactive R data visualization in the browser using [WebR](https://webr.r-wasm
44

55
## What is it?
66

7-
A web application that runs R code directly in your browser - no server required. Features live code editing, CSV upload, and interactive plots.
7+
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/).
88

9-
## License
9+
Read about [why we moved from WebR to AWS Lambda](https://quesma.com/blog-detail/sandboxing-ai-generated-code-why-we-moved-from-webr-to-aws-lambda) for sandboxing AI-generated code.
1010

11-
MIT License
12-
13-
## Author
14-
15-
Developed by [Piotr Migdal](https://p.migdal.pl/) from [Quesma](https://quesma.com/)
11+
MIT License. Developed by [Piotr Migdal](https://p.migdal.pl/) from [Quesma](https://quesma.com/).
1612

1713
## Installation
1814

src/components/AppHeader.vue

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,12 @@ onMounted(() => {
5252
WebR ggplot2 & dplyr Demo
5353
</h1>
5454
<p class="subtitle">
55-
Interactive R data visualization and manipulation in the browser
55+
Interactive R data viz entirely in your browser
56+
(<a
57+
href="https://quesma.com/blog-detail/sandboxing-ai-generated-code-why-we-moved-from-webr-to-aws-lambda"
58+
target="_blank"
59+
class="subtitle-link"
60+
>why we moved from WebR to AWS Lambda</a>)
5661
</p>
5762
</div>
5863
<a
@@ -172,4 +177,14 @@ onMounted(() => {
172177
height: 14px;
173178
color: #fbbf24;
174179
}
180+
181+
.subtitle-link {
182+
color: white;
183+
text-decoration: underline;
184+
opacity: 0.9;
185+
}
186+
187+
.subtitle-link:hover {
188+
opacity: 1;
189+
}
175190
</style>

0 commit comments

Comments
 (0)