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.
- package/README.md +8 -0
- 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
|
+
[](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
|