How to create and test a data fetching library?
AOS alternative
<A> Component: #id Breaking Link
Component with only <For /> in it removes all HTML children
How can I use a custom hook with createMemo in many places?
Image optimization & createAsync saying that can be null
createAsync
where:
```ts...
Why this modal reactivity is not working? 60 lines of code
How can I publish to github pages?
Resource state never updates when consumed by <Show>
joke.state
never updates afterward.
Is this a bug?...Wait on (async) onMount from Parent before running (sync) onMount from Children?
undefined on contexts that depend on each other
SavedProvider
depends on useJsonData
, and JsonDataProvider
depends on useSaved
.
```ts
export const [JsonDataProvider, useJsonData] = createContextProvider(() => {
// get the state synchronously
const [filePath, setFilePath] = useFilePath()!;...How can i run some dom manip before rendering?
createResource blocks navigation
createResoure
is blocking the UI change till the Promise resolves.
```ts
export const SingleExchange = () => {
const _exchange = useExchangeFromParams()...SolidJS routing not working, needs to reload the page.
Why do Components in For get recreated on any change
err::insecure_response: solid-start `service-worker` with 'vite-plugin-pwa'
service-worker
and background-sync-api
for periodic data fetching with solidj-start
and vite-pwa
.
Static
and service-worker
both preset builds ok, but
localhost = service worker registers ☑️
https://domain.com = service worker registers 🛑 with err::insecure_response...Button to API route returns 404 but direct hit functions
GET
request and just deletes the cookie. Hitting the api route with httpie or via curl returns a 302 to the home page as expected but the button that is a href to the same route returns a 404. I am at a loss why the API route can be hit from httpie, works if I manually go to localhost:3000/auth/logout, but not from the button.
I can copy and paste the link the button has and it works, just not when I actually press the button. ...How can I persist state across page refreshes?
export const [fourCountryQuestion, setFourCountryQuestion] = createStore(getRandomQuestionData())
export const [fourCountryQuestion, setFourCountryQuestion] = createStore(getRandomQuestionData())
No route matched for preloading js assets
How to wrap a store without losing reactivity