home.social

Search

1000 results for “daishi”

  1. Developing Waku is improving my experience with Node.js streams. nodejs.org/dist/latest-v20.x/d I think I learned them in the early days, but this is probably my first time to chain multiple transformers.

    I hope to finish my PR soon. github.com/dai-shi/waku/pull/1 🤩

  2. Waku v0.16.0 has been released! Huge thanks to himself65 for various contributions.

    Repo: github.com/dai-shi/waku
    Demo: codesandbox.io/p/sandbox/waku-

    What is Waku? It's a React framework for RSC.
    This version uses Vite v4.5.0. I would like to ask help for testing. Any volunteers?

  3. 🎉 Waku-Waku excited to announce Waku v0.15.0!

    It's a new version with breaking change. Improves the protocol so that a RSC payload can contain multiple JSX elements. Has new API based on user feedback.

    GitHub 👉 github.com/dai-shi/waku
    Playground 👉 codesandbox.io/p/sandbox/waku-
    🤩

  4. Did you know that I've been developing Waku, a React framework with RSC? github.com/dai-shi/waku

    I was hoping to release v1-alpha soonish, but found some issues with 3rd-party library compatibility. One reason is the lack of capability in Vite. There might be others.

  5. Would you like to try React Server Components in a very small setup? Waku is for you.

    Just released Waku v0.14.0, which is Minimalistic React Framework primarily for RSC.

    GitHub: github.com/dai-shi/waku

    Website: waku.gg

    It's still under development, but you can play with it. It would be good for learning RSC.

    There are some open issues that I can't personally handle entirely, so I officially call for contributors.

  6. Hi, just a quick update on my Waku project. No progress last week, but I'm working on it. My hope is to release a new version soon. Stay tuned! Check out the roadmap if you haven't: github.com/dai-shi/waku/issues

  7. Hi, I'm developing Waku, a React framework with RSC. So far, it's working well with basic standalone examples, but integrating third-party libs is tricky. Here's a WIP PR: github.com/dai-shi/waku/pull/1

    Calling contributors to test libraries for any issues. Your help is appreciated!

  8. 🤩 Waku-Waku excited to announce that Waku v0.13.0 is released! github.com/dai-shi/waku
    It's a React framework based on React Server Components and Vite.

    This version changes the project folder structure. It's a breaking change, but simplify things. It also has an experimental support for HTTP headers and cookies. Feedback is appreciated!

    There are some known issues and we are working on them. Help wanted, especially Vite experts!

  9. 🎉 Waku v0.12.0 is released! Waku-Waku! 🤩
    github.com/dai-shi/waku

    This version includes SSR middleware. It differs from traditional SSR as it excludes client components, resulting in no support for hydration. It can be considered as an experimental feature.

    Waku website is built with the new feature 👉 waku.gg

  10. 🤩 Waku-waku excited to release v0.11.3 of Waku, a React Framework with Server Components! 🎉

    Includes several fixes, and some refactors for the next step, but no breaking change in the public API.

    Repo 👉 github.com/dai-shi/waku
    CodeSandbox Demo 👉 codesandbox.io/p/sandbox/waku-

  11. McDonald's has gotten greedy
    I'm not a regular McDonalds customer but I don't understand how they can get away with charging so much for hashbrowns when potatoes are so cheap.
    Edited by fayetale
    #vtuber #envtuber #vtuberclips #McDonads

  12. McDonald's has gotten greedy
    I'm not a regular McDonalds customer but I don't understand how they can get away with charging so much for hashbrowns when potatoes are so cheap.
    Edited by fayetale
    #vtuber #envtuber #vtuberclips #McDonads

  13. McDonald's has gotten greedy
    I'm not a regular McDonalds customer but I don't understand how they can get away with charging so much for hashbrowns when potatoes are so cheap.
    Edited by fayetale
    #vtuber #envtuber #vtuberclips #McDonads

  14. jotai-xstate v0.5.0 has been released! It finally migrates to XState V5. Huge thanks to the contributors!

    Now, we may need to update the docs and examples. Would anyone like to volunteer?

    github.com/jotaijs/jotai-xstate

  15. Did you know? There are some Jotai integration libraries that might help migrating from other state management libraries. Check out jotai-redux and jotai-recoil.

    github.com/jotaijs/jotai-redux

    github.com/jotaijs/jotai-recoil (We need docs. Would anyone like to help?)

  16. Check out our new kid in the Jotai ecosystem: jotai-history.

    Give it a try and share your feedback!

    github.com/jotaijs/jotai-histo

  17. Zustand seems more popular than Jotai right now. So, I experimented with creating a Zustand-flavored wrapper around Jotai. If I can get some feedback from this, I’d consider it a success!

    GitHub 👉 github.com/jotaijs/jotai-zusta
    Demo 👉 stackblitz.com/github/jotaijs/

  18. Hi, can anyone, who is familiar with functional programming, read, review and share your feedback please?

    jotai.org/docs/basics/function

  19. Just released jotai-suspense v0.4.0! github.com/jotaijs/jotai-suspe

    This version includes `useAtomValue` hook. The name is the same as the one in `jotai`, but unlike the original one, this doesn't resolve promises. You need to explicitly use React 19 `use` hook or `react18-use` lib.

  20. Have you experienced hydration errors with @JotaiJS and @NextJS?

    We have a new library to tackle the SSR integration with Jotai. Please give your feedback.

    Repo: github.com/jotaijs/jotai-ssr

  21. ⭐️ Jotai jotai.org has reached 18k stars on GitHub! Huge thanks to our amazing community for all the support. Let's keep improving it together!

  22. jotai-scope v0.7.0 has been released! I started it as a proof-of-concept project, but it now has two maintainers and this version is more stable than ever!

    ScopeProvider is used to scope atoms. It's a capability often requested by Jotai users.

    github.com/jotaijs/jotai-scope

  23. Jotai is basically modeled after useState, which is reactive. However, you might want to read atom values without being reactive, like in a game app.

    Just released jotai-game v0.2.0, an experimental library providing `useTransientAtom`.

    github.com/jotaijs/jotai-game

  24. There is another subtle difference between TC39 signals and Jotai atoms:
    - TC39 signals are pull-based (lazy evaluation)
    - Jotai atoms are a mix (but not a combination) of push and pull (For mounted atoms, eager eval; otherwise, lazy eval. This is to avoid React rerenders.)

  25. jotai-zustand v0.4.0 has been released!
    This library allows you to create a @JotaiJS atom that is connected to a Zustand store. It's introduced for global access, but as Jotai v2 has the Store API, I'm not sure of the use cases. 😉

    github.com/jotaijs/jotai-zusta

  26. Just released jotai-xstate v0.4.0! This is a @JotaiJS library for XState. The atomWithMachine utility creates an atom with a machine.

    Unfortunately, this version is still for XState v4. We're looking for a maintainer who can also work on migrating to v5.

    github.com/jotaijs/jotai-xstate

  27. jotai-valtio v0.5.0 has been released! This library brings Valtio capabilities to Jotai atoms. It might not be widely used at the moment, but it’s an interesting bit to learn!

    Repo: github.com/jotaijs/jotai-valtio
    Docs: jotai.org/docs/integrations/va 👻💊

  28. jotai-trpc v0.7.0 has been released! This is a binding library for @JotaiJS and @tRPCio. It can create an atom that connects to a vanilla tRPC client.

    The implementation is just a wrapper, so it's fairly stable. Check it out!

    github.com/jotaijs/jotai-trpc

  29. Just released jotai-suspense v0.3.0! This lesser-known library for @JotaiJS helps avoid suspense waterfalls. I'm wondering how to promote this library effectively.

    Repo 👉 github.com/jotaijs/jotai-suspe
    Demo 👉 stackblitz.com/github/jotaijs/