Giter Site home page Giter Site logo

url-io's People

Contributors

liamcmitchell avatar liamcmitchell-sc avatar qur2 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

qur2

url-io's Issues

createSafeSource doesn't resolve Promises

Because nested promises are automatically resolved when consuming as a promise, this leads to inconsistent values when observing as an observable.

const io  = createIO(() => Promise.resolve(1))
io('/').subscribe((v) => console.log(v)) // Promise
io('/').then((v) => console.log(v)) // 1

Async modules

Hi,

I'm thinking about lazy loading a module so that webpack splits my bundle and the module is loaded on demand, not eagerly.
Something naive like that:

createIO({
  /module': (request) => {
    System.import('module/source').then((handler) => handler(request))
  },
})

Right now, I'm under the impression that only the handlers themselves are asynchronous, but the whole path resolving mechanism does not handle promises at all.

At the moment, the only way I see to handle code splitting is to actually have a very thin IO configuration and all its handler starting with a System.import().
That way, the IO stuff is loaded eagerly (but should be very thin) and the (hopefully) heaviest parts can still be lazy loaded.
However, this is not very efficient as the module has to be written specifically to handle code splitting.

Do I understand correctly? Do you have a better way of approaching code splitting? Does url-io require modification to support that?

Thank you.

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.