Giter Site home page Giter Site logo

Comments (4)

weavejester avatar weavejester commented on May 18, 2024 1

Yes, that's fine. I think it's worth making the tools.reader dependency a provided one, since ClojureScript includes it as a default dependency, so it should be the case that if we're working with ClojureScript, then we already have it in our dependency graph.

from integrant.

weavejester avatar weavejester commented on May 18, 2024

It would add an extra dependency to Integrant, but also would only be one more. Could you explain a little more about your use-case? Your configuration is being served from a HTTP server?

from integrant.

kwrooijen avatar kwrooijen commented on May 18, 2024

I have an HTTP server that serves Content-Type: application/edn. And multiple integrant based services that call this HTTP server. One of them being a ClojureScript application. The CLJS application makes an HTTP call, the EDN arrives as text. I then use (my copied) ig/read-string function on the payload.

Another (future) use-case is that I want to build an electron application, and add edn files in the build. Since the electron will build a package with the edn files included, this becomes possible.

Also, not entirely relevant to this issue but you might be wondering:
"If you add a new key to the remote server, and don't add the init-key to the CLJS application, it will break"

Basically the CLJS client decides what to do with this structure, if new keys get added, it shouldn't affect the system. So any undefined keys inherit from a const init-key.

(defmethod ig/init-key :my-lib/const [_ opts]
  opts)

(defn undefined-keys->const
  [config]                               
  (doseq [k (keys config) :let [k (parse-key k)]] 
    (when-not (contains? (methods ig/init-key) k)
      (derive k :my-lib/const))))
....
(undefined-keys->const (ig/read-string config))

Adding an options map to ig/read-string, for example (ig/read-string {:derive-missing-keys :my-lib/const} config) could come in handy (in my case, at least). But that's for another issue 😄

from integrant.

kwrooijen avatar kwrooijen commented on May 18, 2024

@weavejester Is this enough information for you? If you're ok with this change then I can start writing the pull request.

from integrant.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.