JustKira
Explore posts from serversHow to change to FETCH client of Hono to Ky.js or Axios
i like ky.js i wanted to make rpc use ky.js other than normal fetch method im using it with sveltekit
why I am asking this because i start to get annoyed for await request.json() pattern and error handling
there some other cool packages like Effect that makes fetching way ezy and handling its error without try catch so how do i do that?
25 replies
How to Connect to Services using context
I'm getting frustrated with the repetitive getDb(), getStorage(), and similar function calls in my Hono backend. In other backends I've worked with, I didn’t have to do this as often, which makes me feel like there might be a better way to handle it in Hono.
Ideally, I want my services (like database and storage) to be injected into each request automatically, so I can write functions like:
without needing to await anything inside these functions because the necessary setup should have already been handled earlier.
Additionally, I'm using Hono embedded inside a SvelteKit app. If possible, I'd like to leverage SvelteKit's locals to pass the already established database connection to Hono, so I don't have to create a new connection each time.
Is there a way to achieve this in Hono while keeping things clean and efficient?
19 replies
DTDrizzle Team
•Created by JustKira on 4/27/2024 in #help
Circular Reference Error when Using Self-Reference in Table Definition with Drizzle-ORM
I encountered an error while defining a PostgreSQL table using Drizzle-ORM. The issue arises when attempting to create a self-referencing array column that references the primary key of its own table. The error message suggests that there is an issue with type inference possibly due to the self-reference.
Expected Behavior:
I expect to define a self-referencing column (dependencies_courses) that can store an array of course IDs, referencing the id column of the same course table without causing a type inference issue.
2 replies
DTDrizzle Team
•Created by JustKira on 1/19/2024 in #help
Drizzle ORM: Inferring Relation multiple Many to one relation
Hi everyone,
I'm working on a project using Drizzle ORM in a Next.js environment and I've run into a snag. My goal is to set up a database schema for an educational platform where courses have dependencies on other courses. Specifically, I'm trying to establish two types of relationships in my courses table:
Course Dependencies: Identifying the prerequisite courses for a given course.
Dependent Courses: Listing the courses that depend on a given course as a prerequisite.
However, I'm encountering an error when trying to infer the relation for dependentCourses in my courses table. Here's the error message I received:
Error
4 replies
DTDrizzle Team
•Created by JustKira on 12/17/2023 in #help
update not working
this is my api endpoint for patching i have test ...body if values are correct and if data.user.id exist everything should be fine and return true but when i check database it doesnt seem to be updated
for more context im using NEXTJS + react query
2 replies