beta docs for solid-start 0.3.11

Where is the github source code for solid-start 0.3.11 [beta]?
4 Replies
peerreynders
peerreynders3w ago
GitHub
GitHub - solidjs/solid-start at 0.3.x
SolidStart, the Solid app framework. Contribute to solidjs/solid-start development by creating an account on GitHub.
slim (jamesc)
slim (jamesc)OP3w ago
Ah, a branch not a tag .. ok thank you Have you tried to run the docs lately? The npm docs build and start targets require a login for cloudflare via the wrangler package. So, that leaves me with pnpm docs:dev, which starts and shows routes in the console output, but routes like / and /getting-started show a server error An unhandled error occured: GET /: undefined with no stack trace and a html page error TypeError Cannot set property crypto of #<Object> which has only a getter no stack trace (the error was on the server). I'm only trying to run the docs because I don't find them online. I'm only on beta because I'm in over my head when it comes to upgrade all the code I wrote lol..
peerreynders
peerreynders3w ago
Caveman approach: use https://download-directory.github.io/ to download the docs from https://github.com/solidjs/solid-start/tree/0.3.x/docs and use grep to find the relevant markdown files.
$ grep -r --include=*.md --include=*.mdx 'createServerAction\$' .

./core-concepts/routing.md:Similarly, if your actions dispatched using `createRouteAction`/`createServerAction$` throw/return a redirect `Response`, SolidStart will take the user to the specified location.

./core-concepts/api-routes.md:Here is a simple client that you can use in your `routeData` function to fetch data from your [tRPC][trpc] server. You can also use the proxy in `createServerData$` and `createServerAction$` functions, but it's usually better to just use it in a `createResource` or `createRouteData` function.

$ grep -r --include=*.md --include=*.mdx 'createServerAction\$' .

./core-concepts/routing.md:Similarly, if your actions dispatched using `createRouteAction`/`createServerAction$` throw/return a redirect `Response`, SolidStart will take the user to the specified location.

./core-concepts/api-routes.md:Here is a simple client that you can use in your `routeData` function to fetch data from your [tRPC][trpc] server. You can also use the proxy in `createServerData$` and `createServerAction$` functions, but it's usually better to just use it in a `createResource` or `createRouteData` function.

They're probably easier to read on github.
GitHub
solid-start/docs at 0.3.x · solidjs/solid-start
SolidStart, the Solid app framework. Contribute to solidjs/solid-start development by creating an account on GitHub.
slim (jamesc)
slim (jamesc)OP3w ago
github looks great .. thanks again

Did you find this page helpful?