martinsos
martinsos
WWasp
Created by Juan on 3/26/2025 in #đŸ™‹questions
Testing dockerfile locally
@Filip has a workflow/script for this!
5 replies
WWasp
Created by pipas on 3/24/2025 in #đŸ™‹questions
I have npm vulnerabilities when i cloned my project again
@pipas if these are coming from deps that Wasp pins down, because they are deps of these deps, then you can't super easily improve that at the moment. We will be upgrading them in future versions, but Wasp is still in Beta so this is not the biggest priority at the moment. But I believe none of these vulnerabilities are critical, right? Can you share here the warning messages?
9 replies
WWasp
Created by Sven on 3/25/2025 in #đŸ™‹questions
Make a new price in strpie
Hey @Sven this is quite non-Wasp/OpenSaaS specific -> it is more about Stripe and how stuff work there, and just general React / node. @Vinny (@Wasp) might be able to help, but he is traveling at the moment, and the rest of the team doesn't know Stripe well enough. I actually suggest you would get a better answer by asking GPT probably than us! But if you have something more Wasp or Open-Saas specific, let us know.
25 replies
WWasp
Created by Ramon on 3/7/2025 in #đŸ™‹questions
Logging requestID / correlationID
@Ramon my bad, I missed part of the convo above, I get now what you are trying to do! Hm that is a completely valid request, being able to access req from Operations(Query, Action), but if I am correct we don't have that yet. I just created an issue for it here: https://github.com/wasp-lang/wasp/issues/2556 . That actually shouldn't be too hard to add, we just need to forward req via context -> and make sure context has correct Typescript type. There is a small chance there is already a way to reach req from Operation and it is not well documented, so let's see what @Filip says, but I think this is correct. In the meantime, since anyway what you wanted to do is "Get UUID from req" -> "pass UUID down" -> "pass UUID down" -> "pass UUID down" -> ..., what you can do is "Create UUID" -> "pass UUID down" -> ... . What I mean by this is that in the Operation, you can generate UUID direclty there, and then pass it down, instead of generating it in the middleware and then passing it via req. Would that good enough for your use case? I know you the loose the part where you also connect the actual HTTP request with it, but that anyway proably doesn't offer much info since it is kind of abstracted behind the Operation? @Filip what do you think?
12 replies
WWasp
Created by Ramon on 3/7/2025 in #đŸ™‹questions
Logging requestID / correlationID
@Ramon do logs you seee when you run wasp start a not really the same logs you willl see in production, it will be somewhat different! The best way is to look into logging libraries for node/express, like morgan/winston and play with those.
12 replies
WWasp
Created by Omen on 3/6/2025 in #đŸ™‹questions
Auth module should support multiple providers
This is verly likely going to happen for 1.0! We are currently in the middle of the planning and also producing a detailed roadmap, so once hwe have that we should be able to give something more precise.
9 replies
WWasp
Created by Rdiohd on 3/5/2025 in #đŸ™‹questions
Any plans to support Prisma/SQL Server? I know đŸ¤¦â™‚
We are restricting just to reduce the surface area of Wasp DB logic, while we are in Beta! Mostly for small stuff like wasp db start and some deployment scripts, so that we don't have to deal with multiple databases at the moment, and then we will add it once Wasp is more polished (1.0). But it does suck that you can't use it right now hm. Maybe we should rethink this and enable it right now, and be ok with not having full support for some stuff hm, but still it is not trivial amount of work potentially.
10 replies
WWasp
Created by Leonardo Schwartz on 2/21/2025 in #đŸ™‹questions
Why prisma instead of drizzle?
Btw in the next month we plan to do a lot of brainstorming, and one part of it will be on Wasp's modularity and extensibility, of which one part will be these abstractions (especially Auth and Database since those are the clearest at the moment). So if it goes as we are planning right now, you can expect us sharing more info on our plans there, and we will likely also be asking community to chime in with their ideas, would be great to have you part of discussion there. As for Drizzle vs Prisma, @Leonardo Schwartz I am curious because I don't know that much about Drizzle except for basics, where do you find Prisma is lacking the most?
16 replies
WWasp
Created by Leonardo Schwartz on 2/21/2025 in #đŸ™‹questions
Why prisma instead of drizzle?
@Leonardo Schwartz , thanks for the input! It is awesome to hear that you read our articles, I often wonder how much people read about our vision :). As a person that chose Prisma years ago :), I can confirm what @Fecony and @miho said -> Drizzle didn't even exist back then (at least I had no idea about it). As for our vision of being stack agnostic vs tying ourselves to Prisma -> you are right in a way, but also what @Fecony wrote is very correct. I will put it this way: We on purpose decided to go with specific technologies for now (React, Node, Prisma, Postgres) in order to limit our "battle front". If we make Wasp work as we want it to for this set of technologies, it is not hard to imagine it working also for Vue next to React, Bun or Deno next to Node, Drizzle next to Prisma, MySQL next to Postgres. Ok, that depends how much we tie in conceptually into these technologies, if we are super relyant on very core concept of Prisma that no other solution does then that would be an issue -> but we are being quite careful about it, even if that is not obvious from the outside immediately. We are not super heavily relying on specific parts of any of these technologies that you won't see anywhere else. Even Prisma's DSL/schema -> we had our our db model DSL that was Prisma-agnostic and we will probably bring it back, we put it aside for now to focus on other stuff. We are instead really trying to focus on being glue in between them. Not like Blitz that was based on NextJS, or Meteor that had one of main features rely on unique capabilities of minimongo. Pinning down some of the tech in Wasp gives us space to focus on innovating on some other parts that we want to focus on now, till we get those down. To go back to what I said -> we are making sure not to tie in too much conceptually. But, we gave ourselves some leeway to tie in implementation-wise, meaning that right now, Prisma is not an implementation of a DB interface/abstraction defined on Wasp level: instead it is indeed integrated directly with it. Why not immediately design a proper DB abstraction layer that Prisma is just one implementation of, so that we are truly agnostic? And also do similar for React as frontend library for example? Beacuse we didn't want to get ourselves entangled into guessing what this abstraction should be and then constantly fighting it, when we don't know really know enough yet -> we wanted to start with something, learn on the way, and then when we are smarter, figure out the proper abstraction. I don't think anybody can say for sure what is the right way -> sometimes, it does make sense to start with abstraction first, and I have often done that in other projects, but I always had a better idea of the domain and abstractions were simpler. So here, I prefer the approach of implementing IMPL1, then when you want to add IMPL2, is the time to look for common abstraction. Danger is that you get do tied up to IMPL1 that introducing abstraction layer becomes very tough, but I think we do have enough knowledge to have avoided that mostly. On the other hand, I don't we had enough konwledge to get the abstraction right from the first go, or even right enough, to not be PITA. As @Fecony said, we expect Wasp to evolve in the sense that more and more of these abstractions crystalize. If I had to guess which ones are coming first, I would say Auth and Database. Entities also -> right now they are always DB models, but they could be more. I am sorry I can't give more concrete answers, but TL;DR: You are right we are somewhat tied in impelmentation-wise, but it's not as much as it might seem, and we are careful about it, especially not to tie in too much conceptually-wise. We are in the background planning for those abstractions, and they will be coming.
16 replies
WWasp
Created by Justin Williams on 2/15/2025 in #đŸ™‹questions
WSL Install Errors: EISDIR & symlink
@Justin Williams it seems this was about the permissons in the WSL, but it is hard for me to say what exactly it was. Glad to hear you got it going though! It would help if you could maybe figure out what changed on yoru second attempt -> what might have you deleted or done differently that enabled it to work then?
8 replies
WWasp
Created by p4j4r5 on 1/29/2025 in #đŸ™‹questions
SEO issue . Twitter or facebook cannot recognise meta tags
My bad I haven't read the whole convo here! Ok, I wasn't aware that helmet-async doesn't work in that case. Actually let's try to be systematic here. @NEROX , I remember you said some time ago that you had good success with react-helmet-async, for meta tags, right? Is that still correct? On the other hand, you say now that it doesn't work for the opengraph (og) images -> so is that a "special" case of when it doesn't work, or does it also not work for other meta tags then? The question is also, why doesn't it work? Because the parsers that parse opengraph images don't wait for JS to render? As for solutions -> yeah, React 19 might already solve it for us, if not, then SSR is the way to go. We will be adding both to Wasp in the upcoming time, but I can't promise exactly when yet.
25 replies
WWasp
Created by p4j4r5 on 1/29/2025 in #đŸ™‹questions
SEO issue . Twitter or facebook cannot recognise meta tags
Yup https://github.com/wasp-lang/wasp/issues/1910 is a good read with all th elinks from it, specifically usage of react-helmet-async
25 replies
WWasp
Created by Andrea on 10/6/2024 in #đŸ™‹questions
Refresh token is null
Awesome @witczax glad to hear!
20 replies
WWasp
Created by RichardHpa on 3/10/2024 in #đŸ™‹questions
Can I split up the main.wasp file into seperate files
Oh interesting somebody showed on Medium how they split Wasp TS config into multiple fiels! I will summon @Filip , who wrote Wasp TS Config and will answer this the best :).
31 replies
WWasp
Created by chilled_techie on 1/2/2025 in #đŸ™‹questions
Disable Database
Yes maybe! Grand vision is that entities are not db-specific -> instead, they are piece of state that is important for your app through full-stack, and they can be persisted in the database, or coming from Twitter API, or something completely else. So vision is that Entities are standalone concept with different backends/resolvers. But, not there yet. For now, I don't know what makes most sense hm -> maybe what you said Filip, something like "I know what I am doing". Or just accepting that we don't yet support non-db use cases and continue with it a bit longer, although I can understand why that can be frustrating.
15 replies
WWasp
Created by cmcglynn on 12/4/2024 in #đŸ™‹questions
How can I edit the Auth login/logout screens?
I put it back on triage so we can potentially prioritize it
11 replies
WWasp
Created by cmcglynn on 12/4/2024 in #đŸ™‹questions
How can I edit the Auth login/logout screens?
Oh actually we have an issue for this, it is missing in docs indeed! Uff we should add this https://github.com/wasp-lang/wasp/issues/1438
11 replies
WWasp
Created by cmcglynn on 12/4/2024 in #đŸ™‹questions
How can I edit the Auth login/logout screens?
It should be in the docs, you can write your own Login Form that uses actions that Wasp provides, but I do admit it is harder to find in docs than I expected hm! I found it for Username and pass here: https://wasp-lang.dev/docs/auth/username-and-pass#1-using-the-signup-and-login-actions . But I actually failed to find it for Email method. Is it possible that this is not doable for email and pass method @miho ? Or we forgot to document it?
11 replies
WWasp
Created by genyus on 12/16/2024 in #đŸ™‹questions
Accessing static files
Oh yes! Or in JS, not TS specific.
19 replies
WWasp
Created by Obaydah on 12/9/2024 in #đŸ™‹questions
Error when running migrate-dev
And thanks for pinging us!
20 replies