TypeScript sveltekit

Open-source TypeScript projects categorized as sveltekit

Top 23 TypeScript sveltekit Projects

  • immich

    High performance self-hosted photo and video management solution.

  • Project mention: Happy 20th Anniversary, Gmail. I'm Sorry I'm Leaving You | news.ycombinator.com | 2024-04-15

    It really is hard to leave Gmail when all of your data has been conveniently stored therein. This is one of Google's retention strategies and it is indeed brilliant.

    That said, there's a vast number of self-hosted alternatives like Stalwart Mail (email) [1], Immich (images) [2], NextCloud (Google Docs) [3], etc.

    [1] https://stalwa.rt

    [2] https://immich.app

    [3] https://nextcloud.com/

  • next-auth

    Authentication for the Web.

  • Project mention: Deploy Full-Stack Next.js T3App with Cognito and Prisma using AWS Lambda | dev.to | 2024-04-15

    NextAuth.js is not perfect. One of the shortcomings is that it currently does not implement federated logout. This means that even if a user signs out of the Next.js app, he does NOT get signed out of the Cognito user pool client. As a consequence, the user is not really being logged out (i.e he is able to login again without providing the credentials). You can read more about this problem in this Github thread.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • chat-ui

    Open source codebase powering the HuggingChat app

  • Project mention: Zephyr 141B, a Mixtral 8x22B fine-tune, is now available in Hugging Chat | news.ycombinator.com | 2024-04-12

    Zephyr 141B is a Mixtral 8x22B fine-tune. Here are some interesting details

    - Base model: Mixtral 8x22B, 8 experts, 141B total params, 35B activated params

    - Fine-tuned with ORPO, a new alignment algorithm with no SFT step (hence much faster than DPO/PPO)

    - Trained with 7K open data instances -> high-quality, synthetic, multi-turn

    - Apache 2

    Everything is open:

    - Final Model: https://huggingface.co/HuggingFaceH4/zephyr-orpo-141b-A35b-v...

    - Base Model: https://huggingface.co/mistral-community/Mixtral-8x22B-v0.1

    - Fine-tune data: https://huggingface.co/datasets/argilla/distilabel-capybara-...

    - Recipe/code to train the model: https://huggingface.co/datasets/argilla/distilabel-capybara-...

    - Open-source inference engine: https://github.com/huggingface/text-generation-inference

    - Open-source UI code https://github.com/huggingface/chat-ui

    Have fun!

  • Superforms

    Superforms is a SvelteKit library that helps you with server-side validation and client-side display of forms.

  • Project mention: Building a dynamic form with Svelte and Typescript | dev.to | 2024-02-23

    This next step is probably the easiest. Since you're also sending the select platform template, you can reference that to determine if the data is valid (why not try superforms? I made an adapter for it).

  • svelte-preprocess

    A ✨ magical ✨ Svelte preprocessor with sensible defaults and support for: PostCSS, SCSS, Less, Stylus, Coffeescript, TypeScript, Pug and much more.

  • Project mention: How to use Sass or Scss in Svelte/Sveltekit | dev.to | 2024-01-13

    You can learn more about the official svelte-preprocess and other available config here

  • UpSnap

    A simple wake on lan web app written with SvelteKit, Go and PocketBase.

  • Project mention: Do you guys turn your servers off a night? | /r/selfhosted | 2023-12-05

    Yes... I am using UpSnap for scheduling shutdown and booting.

  • undb

    🚀 Private first, unified, self-hosted no code database.

  • Project mention: How to Write a Great Readme | news.ycombinator.com | 2023-07-18

    Great guide. One thing that seems to be missing is something I see in a lot of README's: a list of the core tech stack being used in the repo. Good examples here https://github.com/undb-xyz/undb#-tech-stack and here https://github.com/steven-tey/novel#tech-stack. Did you already consider adding this as part of the guide and decide against it, or was it just not something you thought to add?

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • zenstack

    Typescript toolkit on top of Prisma ORM, offering flexible and declarative Access Control Policy(Authorization/Permission) for RBAC/ABAC/PBAC/ReBAC with auto-generated type-safe APIs and frontend hooks.

  • Project mention: The Many Ways Not to Build an API | dev.to | 2024-04-01

    Another strategy is to model access control declaratively and enforce it in the application layer. ZenStack (built above Prisma ORM) and Hasura are good examples of this approach. The following code shows how access policies are defined with ZenStack and how a secured CRUD API can be derived automatically.

  • Beatbump

    Alternative YouTube Music frontend built with Svelte/SvelteKit 🎧

  • Project mention: On what side project you guys are working on? | /r/webdev | 2023-06-29

    The biggest is Beatbump (GitHub), a free privacy respecting YouTube Music frontend with the ability to self host it or use a public instance. Working on the latest refactor, which should be done soon!

  • auth-helpers

    A collection of framework specific Auth utilities for working with Supabase.

  • Project mention: Supabase Authentication Issue with Next.js 13.4 - !session vs !user | /r/Supabase | 2023-07-04

    I have encountered a similar issue, but I haven't fully found a solution yet. Currently, I'm using the getSession function throughout my server components. Yesterday, I tried running a middleware to refresh the user's session, based on this example: https://github.com/supabase/auth-helpers/blob/main/examples/nextjs/middleware.tsx. This caught my attention because the comment mentioned that the middleware is necessary for any Server Component route using createServerComponentClient. Right now, I'm testing this approach, and so far, I haven't been logged out since yesterday. Do you have that in your application? The main difference between getSession and getUser in supabase is that getSession reads the cookies and is very fast (around 1-2 ms), while getUser makes a call to the supabase API with the access token to retrieve the user and I would assume they also verify the JWT on their end.

  • houdini

    The disappearing GraphQL client (by HoudiniGraphql)

  • Project mention: How can I do auth with URQL | /r/sveltejs | 2023-06-28

    Other random input. Maybe take a look at houdini. https://github.com/HoudiniGraphql/houdini

  • trpc-sveltekit

    End-to-end typesafe APIs with tRPC.io for your SvelteKit applications.

  • Project mention: Using Hono with SvelteKit - Full type-safety with RPC | dev.to | 2024-01-29

    This article, the Hono docs, Elysia SvelteKit example, trpc-sveltekit and lot's of general reading.

  • svelte-legos

    WIP 🚜 A framework for Svelte Utilities 💡 Current status: 78 utilities.

  • Project mention: Suggest Best Svelte Libraries | /r/sveltejs | 2023-05-23

    Svelte Legos for...everything

  • sk-auth

    Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!

  • salvia-kit

    Provides 10 Free Beautiful dashboard templates built with Tailwind CSS for React, Next.js, Svelte, Solid, Angular, Vue and Nuxt.js

  • svelte-meta-tags

    Svelte Meta Tags provides components designed to help you manage SEO for Svelte projects.

  • sveltekit-search-params

    The easiest way to read and WRITE from query parameters in sveltekit.

  • lib

    Internationalization library built for SvelteKit. (by sveltekit-i18n)

  • Project mention: Ask HN: If you were to build a web app today what tech stack would you choose? | news.ycombinator.com | 2023-10-29
  • svelte-forms

    Svelte forms validation made easy

  • grail-ui

    A library of accessible component primitives, actions and utilities for Svelte.

  • Project mention: We need more headless ui library, and I just spotted a good one | /r/sveltejs | 2023-07-11
  • kitql

    A set of standalone tools to SpeedRun WebApps!

  • sveltekit

    Zero-config PWA Plugin for SvelteKit

  • svelte-sitemap

    Sitemap generator for SvelteKit. Small helper which scans your SvelteKit routes and generates static sitemap.xml

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-04-15.

TypeScript sveltekit related posts

Index

What are some of the best open-source sveltekit projects in TypeScript? This list will help you:

Project Stars
1 immich 29,959
2 next-auth 22,041
3 chat-ui 5,842
4 Superforms 1,855
5 svelte-preprocess 1,703
6 UpSnap 1,655
7 undb 1,599
8 zenstack 1,598
9 Beatbump 989
10 auth-helpers 876
11 houdini 857
12 trpc-sveltekit 716
13 svelte-legos 694
14 sk-auth 575
15 salvia-kit 469
16 svelte-meta-tags 465
17 sveltekit-search-params 416
18 lib 409
19 svelte-forms 403
20 grail-ui 374
21 kitql 373
22 sveltekit 248
23 svelte-sitemap 241
The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com