help me
Hello, I have a question. I just started learning to write Solid. I don't understand why, when using Solid router, the screen turns white after running it.
https://github.com/Danuson2564/solid...
Cycles in dependency graph
Hello fellow Solid devs, we need your help!
To make things short: Is there any way to safely recover from a cycle in solid's reactivity dependency graph?
I know that the simple answer is: Don't do cycles! But it's not that easy, let me explain:
We have been building an Excel-Like application and use Solid's reactivity for dependencies between the cells. So users are in full control what cells they reference within they formulas. ...
Custom Accordion - Not Consistant
I wrote a custom Accordion. If I render a single accordion, then I can click on it and it expands as expected ever time. However, if I render multiple Accordions in a for loop, then I can click on the Accordions in the list and sometimes they do nothing. After clicking on them a few times they finally expand.
```TSX
import { createSignal, onCleanup } from "solid-js";
import { Paper, Box, IconButton } from "@suid/material";...
SolidStart - proper `_server` form action urls are only on page refresh.
I have several pages with forms on them. If I go directly to one of those pages, the correct
action="/_server..."
shows in the DOM's form
tag.
If I navigate to the page using solid-router, the action is: function () { [native code]}
and the form POSTs to function () {%20%20%20 [native code]}
On refresh the page properly shows the correct action url.
I searched around but couldn't find this exact issue. I guess the action URL is being replaced during server rendering, but if I don't load that page directly, the client only has a reference to some function somewhere....best way to update multiple children in a multi timer app?
Hey, I've been trying to Google this without much success. I'm trying to create a timer app that updates an array of components each tick. I'm wondering how best to go about doing this. I am thinking of having a parent component which somehow updates a child's internal time value but I don't know what would be the best method to do this. Can anyone give me any guidelines?
crazy bug global store + solid router
inconsistently I am hittin the following crash
```
App.jsx:20 TypeError: Cannot read properties of undefined (reading 'startsWith')
at resolvePath (utils.js?v=9d490caa:16:27)
at Object.resolvePath (routing.js?v=9d490caa:407:20)...
SolidStart - Server Only
I see a way to ensure functions only run on a server, but what about modules that declare classes? I guess that I need to use a factory function instead?
https://docs.solidjs.com/solid-start/reference/server/use-server...
App Structure
Hey, I am struggeling a bit with solid.js as it is new for me. I was hoping to get some guidance when it comes to project structure
The project is a simple shop app (without login/auth) that uses and loads .json files along the way.
So what I have done is create a cache inside products.store.js which caches the product json files:
```js...
Cannot find module
I deleted my
Even though I have the dev server up and running fine. Whats going on here?...
node_modules
and reinstalled my dependencies with bun i
but when i open a file i get this error:
Cannot find module '@solidjs/meta' or its corresponding type declarations.ts(2307)
Cannot find module '@solidjs/meta' or its corresponding type declarations.ts(2307)

Failed To Resolve
I tried importing onMount on a component but it results in vite saying
```
Pre-transform error: Failed to resolve import "solid-js/store/types/server.js" from "src/App.tsx". Does the file exist?
8:56:18 PM [vite] Pre-transform error: Failed to resolve import "solid-js/types/server/reactive.js" from "src/components/DrawComponents.tsx". Does the file exist?
8:56:18 PM [vite] Internal server error: Failed to resolve import "solid-js/store/types/server.js" from "src/App.tsx". Does the file exist?...
Overlay is not shown
Any idea why the
Overlay
in https://playground.solidjs.com/anonymous/92da2972-e71d-4466-93f6-b52aefef4f74 is not shown when showOverlay
is true
?Cannot call server function outside of a request
Tried to initialize Supertokens backend client in parallel with main router, but got this error:
Cannot call server function outside of a request
Supertokens client initializer:
```ts
"use server";...
Router: get current config path?
Hey y'all, is it possible to obtain the current config path? Meaning not /watch/name-of-video but /watch/:slug?
useParams
and useLocation
do not provide this info....Can I Pass `createAsync()` a Signal?
I'm building an analytics dashboard with the Plausible API.
Their API let's you set the time period for the data you're requesting by appending a period value to your URL string like
I want to dynamically change this period value when clicking buttons (e.g., "12mo", "month", "7day", etc). So my server function looks like this:...
&period=6m0
.I want to dynamically change this period value when clicking buttons (e.g., "12mo", "month", "7day", etc). So my server function looks like this:...
App errors because nodemailer
Hi everyone
Today I'm facing an error that I don't know how to solve it, already try to downgrade a few dependencies and didn't work.
Basically I setup renovate to update my dependencies and now my entire website is broken:
- icons isn't render;...

Sugestion for Repeat component
On last stream Ryan show a Repeat components and I like it. Specially that I ofter need to just render something X times.
I've check solid-primitive@range, but it's Repeat not work like I expected
Can someone tell if this self made component will work good, have any major bugs or just strait up is worst then <For>
From my tests it's render properly, dispose only points that are pop'ed and I don't see any warns in console about missing root ect....
dev server pending forever request solid start
I’m unable to open my app in browser on localhost. There is only one request for the document and it’s pending forever. I’m using Mac OS. Any ideas how to get over it?
Using localStorage after creating a project with solidstart
I've just created a project with solidstart and started to add an option for dark mode using localStorage, but get
...
10:47:37 [vite] Error when evaluating SSR module /src/entry-server.tsx:
|- ReferenceError: localStorage is not defined
10:47:37 [vite] Error when evaluating SSR module /src/entry-server.tsx:
|- ReferenceError: localStorage is not defined
Hydration problem?
I am having problems with buttons and links those don't work when I click any button it doesn't log out anything and when I click link it changes the path in url but doesn't navigate me to the desired page here is the github repo https://github.com/7Luke7/sheuketee