nestjs-web-repl 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,6 +30,14 @@ npm install nestjs-web-repl
30
30
  > `register`/`registerAsync` — see [Quick start](#quick-start) and
31
31
  > [Securing it](#securing-it).
32
32
 
33
+ ## Live demo
34
+
35
+ Try it without installing anything — this opens a full NestJS app running the REPL in an in-browser StackBlitz sandbox (the editor and everything else runs in your browser; nothing touches a shared server):
36
+
37
+ [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/p-dim-popov/nestjs-web-repl/tree/main/examples/stackblitz)
38
+
39
+ First boot takes ~30–60s (dependency install + startup); after that the REPL is live. The [demo project](./examples/stackblitz) and its [command cheatsheet](./examples/stackblitz/TRY-THESE.md) live in `examples/stackblitz/`.
40
+
33
41
  ## Quick start
34
42
 
35
43
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nestjs-web-repl",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Expose a live NestJS REPL over the network (HTTP + SSE + Monaco UI).",
5
5
  "keywords": [
6
6
  "nestjs",