Will Acton

Results 95 issues of Will Acton

`defnc` should detect if dependencies are exhaustively filled in, and if not signal a compiler warning. It could be silenced by filling in the dependencies or annotating with metadata. ```clojure...

enhancement
hooks

I'm a bit wary to support this but I see it's benefits, especially when wanting to play with component trees at a REPL. I honestly think that Node.js will eventually...

enhancement
help wanted

**version** babashka v0.8.157 **platform** macOS 12.4 **problem** Using the most popular answer on StackOverflow for ["Create a map entry in Clojure"](https://stackoverflow.com/questions/45151994/create-a-map-entry-in-clojure) results in an error with the message `No matching...

PR welcome

**Is your feature request related to a problem? Please describe.** I have a project that I'm developing using the default CLJS browser REPL. Currently, when the CLJS browser REPL connects...

I've been working on a project for some time that integrates our existing reagent/re-frame application with some plain react components developed using [helix](https://github.com/lilactown/helix). In order to do this, I had...

enhancement

My team and I are doing SSR of our Reagent applications in Node.js, and want to use React's [hydrate](https://reactjs.org/docs/react-dom.html#hydrate) function to efficiently render our apps. Is there any plan to...

enhancement
documentation

Starting a discussion on some of the new features coming down in React 16, that were shown in Dan Abramov's talk at JSConf: https://www.youtube.com/watch?v=v6iR3Zk4oDY Blog post for people who don't...

enhancement

See my notes over on [react-context](https://github.com/Lokeh/reagent-context/blob/master/README.md#gotchas). Basically: ```clojure (def state (r/atom "initial") (defn component [] [other-component (fn [value] [:div @state])]) ``` If `state` changes (via e.g. `swap!` or `reset!`), the...

bug

I'm attempting to use [shelljs](https://github.com/shelljs/shelljs) for some command-line scripts. Using the built-ins like `cd` and `ls` work fine. However, attempting to use `exec` throws this strange error: ``` (node:93637) UnhandledPromiseRejectionWarning:...

swagger-ui works while developing locally: `localhost:4321/` redirects me to the swagger UI and I can send requests. However, once deployed, my service is routed via `domain.com/service-name/`. This causes 3 problems:...

question
Documentation