Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pink-gorilla/nrepl-middleware
nrepl-middleware
https://github.com/pink-gorilla/nrepl-middleware
clojure clojurescript goldly notebook nrepl nrepl-middleware
Last synced: 2 months ago
JSON representation
nrepl-middleware
- Host: GitHub
- URL: https://github.com/pink-gorilla/nrepl-middleware
- Owner: pink-gorilla
- License: epl-1.0
- Created: 2019-10-18T13:47:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-15T01:52:36.000Z (over 1 year ago)
- Last Synced: 2024-10-28T13:38:54.379Z (3 months ago)
- Topics: clojure, clojurescript, goldly, notebook, nrepl, nrepl-middleware
- Language: Clojure
- Homepage:
- Size: 279 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NREPL Middleware [![GitHub Actions status |pink-gorilla/gorilla-middleware](https://github.com/pink-gorilla/nrepl-middleware/workflows/CI/badge.svg)](https://github.com/pink-gorilla/nrepl-middleware/actions?workflow=CI)[![Codecov Project](https://codecov.io/gh/pink-gorilla/nrepl-middleware/branch/master/graph/badge.svg)](https://codecov.io/gh/pink-gorilla/nrepl-middleware)[![Clojars Project](https://img.shields.io/clojars/v/org.pinkgorilla/nrepl-middleware.svg)](https://clojars.org/org.pinkgorilla/nrepl-middleware)
- This project is used in [Notebook](https://github.com/pink-gorilla/gorilla-notebook).
## features
- nrepl websocket relay (browsers can not connect to normal tcp ports)
- nrepl middleware that renders evalued results from notebook session
- nepl middlewre that sniffs evals on other nrepl session
- nrepl client (clj and cljs)on core.async## Middleware cli demo
To test picasso and sniffer middleware run 3 different terminal windows
and execute this 3 commands in this order```
clojure -X:relay ; this runs jetty http server with websocket relay (port 9000)
clojure -M:client -m sink ; will listen to sniffed evals
clojure -M:client -m ide -i ./snippets/sniffer.edn
clojure -M:client -m ide -i ./snippets/sniffer-min.edn; will do a few evals that wil show up on listen
```## WebRelay websocket demo
To see a simple websocket frontend, run in 2 terminal windows:
```
clojure -M:relay ; this runs jetty http server with websocket relay (port 9000)
``````
clojure -M:demo ; browser app served with shadow-cljs dev server port 8000
```## Design of websocket relay
Server
- Browser can only do websocket and not normal sockets.
- Server Relay runs as ring request-handler, and returns new websocket handler
- the websocket handler creates a new nrel client connection, and then
forwards requests in both ways.
- currently we create nrepl server to connect to.Browser:
- The code is spit into several stateful components.
- layer1 is websocket connection. Provides two core async channels.
Manages connection / reconnection.
- layer2: request router. Manages pending requests, returns for each nrepl-op
a dedicated return channel, which is sent fragment by fragment.
The request channel will be closed after the last fragment is received.
- layer3:Logging:
- Lots of logging with timbre at DEBUG level
- If you dot want lots of output, set loglevel to INFO#### Test if javadoc is installed:
clj -Srepro -e "(import '(jdk.javadoc.doclet Doclet))"