Sandvich
Sandvich
DTDrizzle Team
Created by TAINCER on 4/23/2024 in #help
Drizzle wants to truncate my tables when not needed
Not sure if this is an sqlite limitation or a drizzle limitation. Either way you're not doing anything wrong
2 replies
NNuxt
Created by mahiro mahiro mahiro on 4/12/2024 in #❓・help
Nuxt weird error: Cannot destructure property 'type' of 'vnode' as it is null
@Ali Robel Dude are you a bot? Your reply looks like a generic AI answer that doesn't understand this is Vue AND you've ignored his reply saying the problem is solved
3 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
and that's not Nitro's problem
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
There's just no way in javascript to do what you want to do, I don't know what to tell you
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
setInterval could work, but you might run into problems
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
If you were able to listen to certain events and run the code you need without a while loop that would work
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
Since this plugin is just a sync function there's no possible way for Nitro to not wait for the function to finish. That's just how javascript works
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
https://nitro.unjs.io/guide/tasks#scheduled-tasks Could use this to run whatever code you want every minute
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
Or maybe you just want a simple cron job?
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
Without spawning a child process you'll have to do some complicated promise setup where you give up control back to the main thread occasionally.
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
That's for running other node processes and it won't block Nitro
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
you should probably close the issue, and save the maintainers some time
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
Also why did you make an issue on this when it's not a bug?
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
You'll probably want to add a hook for the "close" event to kill the child process. Or maybe you don't need to, I honestly don't know as I've never used child_process before I just know it exists
20 replies
NNuxt
Created by Yaiko on 4/17/2024 in #❓・help
Nitro plugin while loop stucks server
20 replies
TtRPC
Created by santi on 4/12/2024 in #❓-help
Is it possible to get the procedure name / id in middleware?
Until that feature gets implemented you might just have to do:
return {
ctx: {
cache: cachedData,
}
}
return {
ctx: {
cache: cachedData,
}
}
Then in your procedures
...
.query(({ ctx }) => {
if (ctx.cache) return ctx.cache;

...
})
...
.query(({ ctx }) => {
if (ctx.cache) return ctx.cache;

...
})
It's not ideal but it should work
8 replies
NNuxt
Created by Omnislash on 4/13/2024 in #❓・help
Deploy without Nitro
I believe Nitro is way too ingrained into the framework to be removed. Without it nothing would work. I believe when you fetch a page (even non SSR) you hit the nitro code first which creates your nuxt instance. For what reason would you want to remove nitro? Could you solve your problem by doing just Vue?
9 replies
NNuxt
Created by Kérunix on 4/12/2024 in #❓・help
How to have a different "default" page in nested routing
oh that's nice didn't know about that
12 replies
TtRPC
Created by Rasel Hossain on 4/9/2024 in #❓-help
How to get the Request Body data of QStash
No idea what Qstash is or how it works. Probably best reading their documentation
10 replies