Giter VIP home page Giter VIP logo

Comments (6)

r0man avatar r0man commented on August 23, 2024

No, noting planned. Patch welcome!

from cljs-http.

rukor avatar rukor commented on August 23, 2024

Thanks, I will take a look.

from cljs-http.

moea avatar moea commented on August 23, 2024

Assuming the presence of the "xmlhttprequest" NPM package (e.g. via lein-npm), then this works fine: https://gist.github.com/moea/63d7a882e4ad333f3b5a

Performing that kind of global adjustment is obviously a less-good idea in a library intended for reuse. If there was interest in including something similar, I think the lowest-impact approach would be to include an xhr-factory function, which takes in a function, and returns a class like the one linked above, with the input parameter serving as the implementation of the createInstance method. Additionally, requests could support something like a :cljs-http/xhr-factory key in request maps, which will pass the option to XhrIo. And/or a (cljs-http.core/set-xhr-factory!) function which sets the factory for all requests originating via cljs-http. The code for a Node user would be something like:

(require '[cljs.nodejs :as nodejs])
(require '[cljs-http.core :as http])

(def xhr (.-XMLHttpRequest (nodejs/require "xmlhttprequest"))

(http/set-xhr-factory! (http/xhr-factory #(xhr.)))

;; use library normally

Which isn't too bad, and doesn't require there to be anything vaguely Node-specific in cljs-http.

from cljs-http.

vikeri avatar vikeri commented on August 23, 2024

I would find an implemented version of this very useful as well. HTTP(S) + Node + CLJS seems like a pretty common/powerful usecase?

from cljs-http.

moea avatar moea commented on August 23, 2024

@vikeri Maybe this is helpful meanwhile https://github.com/nervous-systems/kvlt

from cljs-http.

vikeri avatar vikeri commented on August 23, 2024

I managed to get it working. But kvit seems to be a great project! I'm starting to work with React Native so this possibly comes in handy there :)

from cljs-http.

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.