Solid-CLI won't create any project
node (either via npx or bunx) the CLI fails simply stating 'something went wrong' - when running under bun, zlib causes a crash and solid-cli reports the operation as cancelled
createEffect is reactive, JSX isn't
Restricte route by user role, possibly a middleware?
Navigating with A from and to dynamic route doesn't re-render.
routes/post/[postid].tsx.
Within this route I have (simplified) ```tsx
const [post, {mutate, refetch}] = createResource(() => {
return getPost(params.postid);
});...[solved] Can't use `@solidjs/router` in external package for SolidStart
A component exported from @solidjs/router in the library. However, when I use the library in the app it breaks & complains that it needs to be wrapped in <Router>.
If I copy paste the library code into the SolidStart project it suddenly works flawlessly. Does anyone know what's going on?
For context, I'm trying to create a builder function that returns a wrapped A component, like so:...Seems like I found a JSX bug
<p>{myVar} people</p> but if you do that in a SVG's <text> element inside a <For> loop it will throw an error, here is it in the playground: https://playground.solidjs.com/anonymous/c5ffdd2c-b93e-469d-bfc7-e5e49d95ba17 If you delete the % symbol, it will work normally.
Is it a bug? or am I breaking some JSX rule?...How can I protect nothing ever breaks, while the setTimeout is waiting
Canonical way to handle exceptions in async functions to perform redirect?
[solved]Issue with Solid Start MDX Project: 404 Error for New Page

Trying SolidJS + Deno + ViteJS + Solid-Router + TailwindCSS, would love some help :)
memo inside solid-js package.
If anyone has enough knowledge with build and ESM module, I'll be happy to receive some help in order to make it work 😄
Here is the repo: https://github.com/carere/solid-router-deno-vitejs-tailwind...How to css preloading
Handling of sensitive information from the front end
Resource with async cache
cache_get function returns a promise so I cannot set it to the initialValue option of resources.
I want to display the cached value while I fetch the actual, (the cached value is considered stale) so I cannot simply add it to the fetcher.
I thought that using mutate with res.latest would give the desired behaviour, where Suspense is only triggered when initially, and not-triggered when cached value is set.
Here are my two attempts:...Getting this error - TypeError: Cannot read properties of null (reading '_isDirty')

Derived signals with args?
const double = () => 2 * count();
const double = () => 2 * count();
JS Full stack framework designed web vs API fetch use web
How do you preserve reactivity across package boundaries?
vite-preset-solid plugin. The component library package is npm linked into the application.
Here are a few of the methods I attempted that seem like they should have worked:...How to create a wrapper for SolidJS's setStore in TypeScript?
const [store, setStore] = createStore<SomeComplexType>();
const [store, setStore] = createStore<SomeComplexType>();
submit form without reloading
actions but don't want it to trigger a reload of the route for client side purposes - but I can't seem to figure it out now that Solid Router overwrites the native form element.
I'm not using SolidStart - just vanila Solid/Router with Tauri. In alpha SS it was pretty easy due to the invalidate helper but I'm finding it pretty hard in the README to figure out a similar functionality?
Is this to be expected and now if you want to use native forms - you are forced into the server-like route reload with using actions? Just trying to understand the new flow of things?...