miho
Explore posts from serversWWasp
•Created by julien on 4/3/2025 in #🙋questions
Unable to get cookies onAfterLogin
Your client and server apps are two different things, you can't get client app cookies in the server app @sodic invoking the extra explanation
9 replies
WWasp
•Created by Webby Vanderhack on 3/28/2025 in #🙋questions
Is it possible to configure Wasp to use a different package manager?
We don't currently support any other package manager other then
npm
, we are looking to add support for more package managers in the future: https://github.com/wasp-lang/wasp/issues/22625 replies
WWasp
•Created by Gus on 3/28/2025 in #🙋questions
How can I prevent google login to automatically login with the latest chosen account?
@Carlos would this hook allow the user to add the param to the URL? https://wasp.sh/docs/auth/auth-hooks#executing-code-before-the-oauth-redirect
20 replies
WWasp
•Created by Briston on 12/15/2024 in #🙋questions
Google analytics is not getting installed in my index.html after using npm run build?
@Briston can a human assist you as well? 🙂
56 replies
WWasp
•Created by julien on 4/3/2025 in #🙋questions
Unable to get cookies onAfterLogin
Which cookies are you trying to get? Did you add anything in the cookies yourself?
9 replies
WWasp
•Created by 初九 on 4/1/2025 in #🙋questions
How to use HEROUI in WASP
You need to wrap all of the glob strings in the
content
array with resolveProjectPath
, let me know if that fixes things for you9 replies
WWasp
•Created by Zuck on 4/1/2025 in #🙋questions
Getting this issue in WASP 0.16.2
Yep, it's a weird npm related bug we have seen in the wild
23 replies
WWasp
•Created by Zuck on 4/1/2025 in #🙋questions
Getting this issue in WASP 0.16.2
wasp clean + delete package-lock.json?
23 replies
WWasp
•Created by 初九 on 4/1/2025 in #🙋questions
How to use HEROUI in WASP
Can you share your tailwind.config.cjs contents?
9 replies
WWasp
•Created by Cam Pak on 3/29/2025 in #🙋questions
How did you get the name "Wasp"?
It was STIC - Specification To Implemention Compiler 😂 and the logo was a stick
17 replies
WWasp
•Created by I’m not kidding. on 3/28/2025 in #🙋questions
Security checklist with wasp
It depens somewhat on your deployment method, are you self hosting on some sort of VPS? A lot of security tips go in the direction of securing your server. If you are using Fly or Railway - these worries are mostly handled for you.
One big security thing to consider is that you are validating access on the server and not in the client. e.g. checking the
context.user
to see if they have access to certain queries and actions. That's the big one.
Another one would be to make sure that users can't edit stuff they shouldn't be able to e.g. doing context.entities.Task.create({ data: args })
<---- db will save anything the user sends... you'd want to be very explicit e.g. context.entities.Task.create({ data: { name: args.name } })
.
One extra one - make sure you use Zod
or smth like that to validate the data received from the client as well. Look at the latest Open Saas source code to find an example: https://github.com/wasp-lang/open-saas/blob/main/template/app/src/file-upload/operations.ts#L32
This list is non exhaustive, I'd suggest searching for general Node.js and React security tips online since Wasp is just using that under the hood 🙂8 replies
WWasp
•Created by paulo.langer on 7/17/2024 in #🙋questions
Supabase Auth
I didn't try using Supabase Auth with Wasp to be honest, it made more sense to me use Wasp's auth becuase then I can get the user object on the client and in the operations out of the box
10 replies
WWasp
•Created by AC on 3/26/2025 in #🙋questions
Does anyone have step-by-step instructions on implementing PostHog in Wasp by any chance?
You get the script from Posthog, and add it to the head
This is what I did: https://github.com/wasp-lang/wasp/pull/2563/files
8 replies
WWasp
•Created by Juan on 3/18/2025 in #🙋questions
Setting up Cors in 0.16.0
Check the "Debugging failed migrations" section here: https://wasp.sh/docs/deployment/database
If you need some help or have any questions. ping me
19 replies
WWasp
•Created by Wlski on 9/5/2024 in #🙋questions
Nginx ssl certificates broke client/server communication?
If you set the
PORT
env variable, the server will use it. This is how we parse it:
28 replies
WWasp
•Created by Zuck on 5/14/2024 in #🙋questions
Anyone got RAG working with WASP?
It's quite the journey, more and more serious! Let us know if we can help out somehow 🙂
37 replies
WWasp
•Created by ApexFossa45 on 3/23/2025 in #🙋questions
how to downgrade from wasp version?
@ApexFossa45 which version of Wasp did you use previously? To which version did you upgrade?
I'd advise you to follow the migration guides and finish the migration to the latest version: https://wasp.sh/docs/migration-guides/migrate-from-0-14-to-0-15 (one of the migration guides, you'll find others in the sidebar)
31 replies
WWasp
•Created by Juan on 3/18/2025 in #🙋questions
Setting up Cors in 0.16.0
Hm, I'll test out the exact setup later and let you know what I find
19 replies
WWasp
•Created by Juan on 3/18/2025 in #🙋questions
Setting up Cors in 0.16.0
One extra insight from LLMs: don't use trailing slashes when specifying your domain
https://chordamigo-client.apps.chordamigo.com/
-> https://chordamigo-client.apps.chordamigo.com
19 replies
WWasp
•Created by Juan on 3/18/2025 in #🙋questions
Setting up Cors in 0.16.0
@Filip that's a good guess, @Juan what's the value of your
WASP_WEB_CLIENT_URL
env var in production? Could you share your latest server.setupFn
code?
This is a gist I share often, let me know if this works for you: https://gist.github.com/infomiho/5ca98e5e2161df4ea78f76fc858d3ca219 replies