Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add in an example using Reitit and Javascript. #396

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Key | Value

Link | Description
--------------------------------------------- | --------------------------------------------------------
**[Official example]** | **Official Sente reference example**, always up-to-date
**[Official example]** | **Official Sente reference example**, always up-to-date
[@laforge49/sente-boot] | Example using Sente v1.11.0, Boot (also works with Windows)
[@laforge49/sente-boot-reagent] | Example using Sente v1.11.0, Boot, and Reagent
[@tiensonqin/lymchat] | Example chat app using React Native
Expand All @@ -262,6 +262,7 @@ Link | Description
[@seancorfield/om-sente] | ??
[@tfoldi/data15-blackjack] | Multiplayer blackjack game with documented source code
[@davidvujic/sente-with-reagent-and-re-frame] | Example code that combines Sente with Reagent and re-frame in a single page application
[@dharrigan/websockets] | Example using [Reitit](https://github.com/metosin/reitit), Jetty 9/10 and a JavaScript (not Clojurescript!) client [@dharrigan/websockets-js]
Your link here? | **PR's welcome!**

### FAQ
Expand Down Expand Up @@ -386,7 +387,7 @@ Otherwise, you can reach me at [Taoensso.com]. Happy hacking!

## License

Distributed under the [EPL v1.0] \(same as Clojure).
Distributed under the [EPL v1.0] \(same as Clojure).
Copyright © 2014-2020 [Peter Taoussanis].

<!--- Standard links -->
Expand Down Expand Up @@ -435,6 +436,8 @@ Copyright &copy; 2014-2020 [Peter Taoussanis].
[@timothypratley/snakelake]: https://github.com/timothypratley/snakelake
[@tfoldi/data15-blackjack]: https://github.com/tfoldi/data15-blackjack
[@davidvujic/sente-with-reagent-and-re-frame]: https://github.com/DavidVujic/sente-with-reagent-and-re-frame
[@dharrigan/websockets]: https://github.com/dharrigan/websockets
[@dharrigan/websockets-js]: https://github.com/dharrigan/websockets-js

[Express]: http://expressjs.com/
[Dog Fort]: https://github.com/whamtet/dogfort
Expand Down
11 changes: 11 additions & 0 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{:paths ["src" "resources"]

:deps {org.clojure/clojure {:mvn/version "1.10.3"}
;;
;;
;;
org.clojure/core.async {:mvn/version "1.5.648"}
com.taoensso/encore {:mvn/version "3.20.0"}
org.java-websocket/Java-WebSocket {:mvn/version "1.5.2"}
org.clojure/tools.reader {:mvn/version "1.3.6"}
com.taoensso/timbre {:mvn/version "5.1.2"}}}