Medim
Medim
Explore posts from servers
BABetter Auth
Created by Medim on 3/12/2025 in #help
TypeError: list.filter is not a function.
entire error:
# SERVER_ERROR: 293 | );
294 | let list = [];
295 | const now = Date.now();
296 | if (currentList) {
297 | list = safeJSONParse(currentList) || [];
298 | list = list.filter((session) => session.expiresAt > now);
^
TypeError: list.filter is not a function. (In 'list.filter((session) => session.expiresAt > now)', 'list.filter' is undefined)
at <anonymous> (/Users/medim/Code/auth-server/node_modules/better-auth/dist/shared/better-auth.B5NYxGA3.mjs:298:27)
# SERVER_ERROR: 293 | );
294 | let list = [];
295 | const now = Date.now();
296 | if (currentList) {
297 | list = safeJSONParse(currentList) || [];
298 | list = list.filter((session) => session.expiresAt > now);
^
TypeError: list.filter is not a function. (In 'list.filter((session) => session.expiresAt > now)', 'list.filter' is undefined)
at <anonymous> (/Users/medim/Code/auth-server/node_modules/better-auth/dist/shared/better-auth.B5NYxGA3.mjs:298:27)
Is it bun related? im using bun + hono
7 replies
BABetter Auth
Created by Medim on 3/11/2025 in #help
API endpoints timing out
I'm hosting a auth server on railway and the API just becomes unresponsive if I hit one of better-auth endpoints with my http client (httpie) locally it works fine and it logs correctly:
<-- POST /api/auth/sign-up/email
checking client timeout
connecting new client
new client connected
pulse queue
no queued requests
2025-03-11T02:25:22.421Z INFO [Better Auth]: Sign-up attempt for existing email: [email protected]
--> POST /api/auth/sign-up/email 422 776ms
remove idle client
<-- POST /api/auth/sign-up/email
checking client timeout
connecting new client
new client connected
pulse queue
no queued requests
2025-03-11T02:25:22.421Z INFO [Better Auth]: Sign-up attempt for existing email: [email protected]
--> POST /api/auth/sign-up/email 422 776ms
remove idle client
(I added logs: console.log to the db config because I thought something was hanging there) but on railway it hangs infinitely and crashes my api with a mem leak
Started server: http://localhost:8080
Redis connected
Redis ready
<-- GET /
--> GET / 200 0ms
<-- GET /api/auth/sign-up/email
Started server: http://localhost:8080
Redis connected
Redis ready
<-- GET /
--> GET / 200 0ms
<-- GET /api/auth/sign-up/email
worth mentioning i'm using bun + hono setup, there's nothing else in the api, just better-auth. This is my auth.ts:
import { betterAuth } from "better-auth"
import { openAPI } from "better-auth/plugins"
import { Pool } from "pg"
import { Redis } from "ioredis"

const redis = new Redis(process.env.REDIS_URL as string)
.on("error", (err) => {
console.error("Redis connection error:", err)
})
.on("connect", () => {
console.log("Redis connected")
})
.on("ready", () => {
console.log("Redis ready")
})

export const auth = betterAuth({
emailAndPassword: {
enabled: true,
},
plugins: [openAPI()],
database: new Pool({
connectionString: process.env.DATABASE_URL,
log: console.log
}),
secondaryStorage: {
get: async (key) => {
const value = await redis.get(key)
return value ? JSON.stringify(value) : null
},
set: async (key, value, ttl) => {
if (ttl) await redis.set(key, value, "EX", ttl)
else await redis.set(key, value)
},
delete: async (key) => {
await redis.del(key)
},
},
})
import { betterAuth } from "better-auth"
import { openAPI } from "better-auth/plugins"
import { Pool } from "pg"
import { Redis } from "ioredis"

const redis = new Redis(process.env.REDIS_URL as string)
.on("error", (err) => {
console.error("Redis connection error:", err)
})
.on("connect", () => {
console.log("Redis connected")
})
.on("ready", () => {
console.log("Redis ready")
})

export const auth = betterAuth({
emailAndPassword: {
enabled: true,
},
plugins: [openAPI()],
database: new Pool({
connectionString: process.env.DATABASE_URL,
log: console.log
}),
secondaryStorage: {
get: async (key) => {
const value = await redis.get(key)
return value ? JSON.stringify(value) : null
},
set: async (key, value, ttl) => {
if (ttl) await redis.set(key, value, "EX", ttl)
else await redis.set(key, value)
},
delete: async (key) => {
await redis.del(key)
},
},
})
6 replies
NNuxt
Created by Medim on 1/29/2025 in #❓・help
Clearable <USelectMenu>
How can I make a sort of clearable menu? I did it like this using a <UIcon> but it's so unreliable its all janky and doesn't work properly
<USelectMenu
icon="i-mingcute-suitcase-line"
:loading="statusCompanies === 'pending'"
clear-search-on-close
option-attribute="name"
v-model="selectedCompanyId"
value-attribute="id"
:options="companies"
searchable
searchable-placeholder="Filtrar empresa..."
label="Filtrar por empresa"
class="w-56"
>
<template #trailing>
<UIcon
v-if="selectedCompanyId"
color="primary"
class="h-5 w-5"
@click.stop="() => (selectedCompanyId = '')"
name="i-mingcute-close-circle-line"
></UIcon>
</template>
</USelectMenu>
<USelectMenu
icon="i-mingcute-suitcase-line"
:loading="statusCompanies === 'pending'"
clear-search-on-close
option-attribute="name"
v-model="selectedCompanyId"
value-attribute="id"
:options="companies"
searchable
searchable-placeholder="Filtrar empresa..."
label="Filtrar por empresa"
class="w-56"
>
<template #trailing>
<UIcon
v-if="selectedCompanyId"
color="primary"
class="h-5 w-5"
@click.stop="() => (selectedCompanyId = '')"
name="i-mingcute-close-circle-line"
></UIcon>
</template>
</USelectMenu>
14 replies
NNuxt
Created by Medim on 1/27/2025 in #❓・help
Fixed column width in Nuxt UI UTable
Can we set it? I'm getting some layout shift while paginating cause some values are more extensive than others
18 replies
NNuxt
Created by Medim on 1/23/2025 in #❓・help
UAuthForm autocomplete warning
No description
6 replies
BABetter Auth
Created by Medim on 1/22/2025 in #help
Type instantiation is excessively deep and possibly infinite.
Been getting those type errors everywhere, Nuxt 3 project. It happens on my utils/auth-client.ts (where I create and export a client, just like the docs says) and everywhere else where I import this client.
9 replies
NNuxt
Created by Medim on 11/27/2024 in #❓・help
nuxtr not showing dependency version popup
No errors in console
5 replies
NNuxt
Created by Medim on 5/7/2024 in #❓・help
Encoding a bit off on createError?
No description
38 replies
NNuxt
Created by Medim on 5/1/2024 in #❓・help
Use prisma globally in api routes
I have a question, is it possible to use the prisma client globally without having to import it everytime? I'm using Prisma + Turso so there's a bit more than just two lines of code to use the prisma client so adding it to every api file is a bit tiring, is there a way to make it available as a util/helper globally? what is the best way to do it?
import { PrismaClient } from "@prisma/client"
const libsql = createClient({
url: `${tursoDatabaseUrl}`,
authToken: `${tursoAuthToken}`,
})

const adapter = new PrismaLibSQL(libsql)
const prisma = new PrismaClient({ adapter })
import { PrismaClient } from "@prisma/client"
const libsql = createClient({
url: `${tursoDatabaseUrl}`,
authToken: `${tursoAuthToken}`,
})

const adapter = new PrismaLibSQL(libsql)
const prisma = new PrismaClient({ adapter })
4 replies
NNuxt
Created by Medim on 4/12/2024 in #❓・help
Using a custom font results in a large blank space beneath placeholders
No description
2 replies
NNuxt
Created by Medim on 4/11/2024 in #❓・help
How can I setup this font using nuxt/fonts
No description
8 replies
NNuxt
Created by Medim on 4/6/2024 in #❓・help
Nuxtr always fails to update dependencies
If I use Nuxtr to update a dependency, it will fail. But If I click on "Install Manually" it goes through without a problem, what could it be? I'm using Yarn 4.0 and its specified on package.json
1 replies
NNuxt
Created by Medim on 2/20/2024 in #❓・help
Can't find auto import in slug route
No description
12 replies
NNuxt
Created by Medim on 12/9/2022 in #❓・help
When to use composables
quick question, when to use composables? In my project im creating an axios instance in a composable, is it correct?
1 replies