From f8ae663cc7fc32f364a4689216b3488163120ac1 Mon Sep 17 00:00:00 2001 From: Michael Abrahams Date: Tue, 27 Aug 2024 15:09:01 -0400 Subject: [PATCH] Fix broken links in NPM documentation (#2263) * Fix broken links in NPM documentation Link to Github pages for JS Framework Benchmark and hope-ui * Create fuzzy-shoes-push.md --------- Co-authored-by: Ryan Carniato --- .changeset/fuzzy-shoes-push.md | 5 +++++ packages/solid/README.md | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changeset/fuzzy-shoes-push.md diff --git a/.changeset/fuzzy-shoes-push.md b/.changeset/fuzzy-shoes-push.md new file mode 100644 index 000000000..f404a7a9f --- /dev/null +++ b/.changeset/fuzzy-shoes-push.md @@ -0,0 +1,5 @@ +--- +"solid-js": patch +--- + +Fix broken links in Readme diff --git a/packages/solid/README.md b/packages/solid/README.md index 942c9cc96..5ed74260d 100644 --- a/packages/solid/README.md +++ b/packages/solid/README.md @@ -30,7 +30,7 @@ Solid is a declarative JavaScript library for creating user interfaces. Instead - A growing community and ecosystem with active core team support
- + Quick Start You can get started with a simple app by running the following in your terminal: @@ -81,7 +81,7 @@ For TypeScript to work, remember to set your `.tsconfig` to handle Solid's JSX: ### Performant -Meticulously engineered for performance and with half a decade of research behind it, Solid's performance is almost indistinguishable from optimized vanilla JavaScript (See Solid on the [JS Framework Benchmark](https://rawgit.com/krausest/js-framework-benchmark/master/webdriver-ts-results/table.html)). Solid is [small](https://bundlephobia.com/package/solid-js@1.3.15) and completely tree-shakable, and [fast](https://levelup.gitconnected.com/how-we-wrote-the-fastest-javascript-ui-framework-again-db097ddd99b6) when rendering on the server, too. Whether you're writing a fully client-rendered SPA or a server-rendered app, your users see it faster than ever. ([Read more about Solid's performance](https://dev.to/ryansolid/thinking-granular-how-is-solidjs-so-performant-4g37) from the library's creator.) +Meticulously engineered for performance and with half a decade of research behind it, Solid's performance is almost indistinguishable from optimized vanilla JavaScript (See Solid on the [JS Framework Benchmark](https://krausest.github.io/js-framework-benchmark/current.html)). Solid is [small](https://bundlephobia.com/package/solid-js@1.3.15) and completely tree-shakable, and [fast](https://levelup.gitconnected.com/how-we-wrote-the-fastest-javascript-ui-framework-again-db097ddd99b6) when rendering on the server, too. Whether you're writing a fully client-rendered SPA or a server-rendered app, your users see it faster than ever. ([Read more about Solid's performance](https://dev.to/ryansolid/thinking-granular-how-is-solidjs-so-performant-4g37) from the library's creator.) ### Powerful @@ -93,7 +93,7 @@ Do more with less: use simple, composable primitives without hidden rules and go ### Productive -Solid is built on established tools like JSX and TypeScript and integrates with the Vite ecosystem. Solid's bare-metal, minimal abstractions give you direct access to the DOM, making it easy to use your favorite native JavaScript libraries like D3. And the Solid ecosystem is growing fast, with [custom primitives](https://github.com/solidjs-community/solid-primitives), [component libraries](https://hope-ui.com/), and build-time utilities that let you [write Solid code in new ways](https://github.com/LXSMNSYC/solid-labels). +Solid is built on established tools like JSX and TypeScript and integrates with the Vite ecosystem. Solid's bare-metal, minimal abstractions give you direct access to the DOM, making it easy to use your favorite native JavaScript libraries like D3. And the Solid ecosystem is growing fast, with [custom primitives](https://github.com/solidjs-community/solid-primitives), [component libraries](https://github.com/hope-ui/hope-ui), and build-time utilities that let you [write Solid code in new ways](https://github.com/LXSMNSYC/solid-labels).
Show Me!