Help needed: Cannot find module '@wasp/auth'
π¨ Help needed: Cannot find module '@wasp/auth'
Hi everyone,
I'm having trouble compiling my Wasp project, and I keep getting errors related to @wasp/auth.
π΄ Error messages:
plaintext
Copier
Modifier
π --- Building SDK... ------------------------------------------------------------
[ Wasp ] src/pages/LoginPage.tsx(2,23): error TS2307: Cannot find module '@wasp/auth' or its corresponding type declarations.
[ Wasp ] src/pages/LoginPage.tsx(5,25): error TS2307: Cannot find module '../../.wasp/out/sdk/wasp/auth' or its corresponding type declarations.
[ Wasp ] src/pages/MainPage.tsx(1,25): error TS2307: Cannot find module '../../.wasp/out/sdk/auth' or its corresponding type declarations.
[ Wasp ] src/pages/MessagesPage.tsx(2,25): error TS2307: Cannot find module '../../.wasp/out/sdk/wasp/auth' or its corresponding type declarations.
[ Wasp ] src/pages/NotificationsPage.tsx(2,25): error TS2307: Cannot find module '../../.wasp/out/sdk/wasp/auth' or its corresponding type declarations.
[ Wasp ] src/pages/RegisterPage.tsx(2,24): error TS2307: Cannot find module '@wasp/auth' or its corresponding type declarations.
[ Wasp ] src/pages/RegisterPage.tsx(5,25): error TS2307: Cannot find module '../../.wasp/out/sdk/wasp/auth' or its corresponding type declarations.
πΉ What I have tried so far:
Running wasp clean, deleting .wasp/, node_modules/, and package-lock.json, then reinstalling everything (npm install).
Checking the .wasp/out/sdk/wasp/auth folder, and it does exist.
Manually verifying my package.json, prisma version, and Wasp version (0.16.2).
β Questions:
Is there a specific way to ensure @wasp/auth is correctly generated?
Should I reference @wasp/auth differently in my imports?
Any suggestions on how to resolve this?
Thanks in advance for any help! π
6 Replies
Hi @olinux. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
Based on the information provided in the knowledge sources, I can offer some insights and potential solutions to your issue with the "@wasp/auth" module not being found.
1. Wasp Version:
First, ensure you're using the latest version of Wasp. You mentioned using version 0.16.2, which is relatively recent. However, it's worth checking if there's a newer version available.
2. Import Path:
There have been changes to the import paths in recent Wasp versions. Instead of
@wasp/auth
, try using wasp/client/auth
. This change is mentioned in the Discord support thread where a similar issue was resolved.
For example, change:
to:
3. Wasp Compilation:
Make sure you've run the Wasp compiler. As mentioned in another Discord support thread, you need to run wasp start
for the compiler to generate the SDK with all the wasp/*
packages.
4. Clean and Rebuild:
If the above doesn't work, try the following steps as suggested in the Discord support thread:
a. Run wasp clean
to delete all .wasp
and node_modules
content.
b. Run wasp start
to reinstall and rebuild everything.
5. Check Auth Configuration:
Ensure that your main.wasp
file has the correct auth configuration. It should look something like this:
6. Deployment Issues:
If this error only occurs during deployment (e.g., to fly.io) but works fine locally, it might be a build process issue specific to the deployment. In this case, you may need to investigate your deployment configuration.
If none of these solutions work, it might be a bug in Wasp itself. In that case, consider opening an issue on the Wasp GitHub repository with details about your setup and the steps to reproduce the error.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------
Sorry @olinux, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist:
Perhaps try again in 15mins?Hey @olinux, which version of Wasp are you using?
olinux@protheus:~/Sunlight$ wasp version
0.16.2
If you wish to install/switch to the latest version of Wasp, do:
curl -sSL https://get.wasp.sh/installer.sh | sh -s
If you want specific x.y.z version of Wasp, do:
curl -sSL https://get.wasp.sh/installer.sh | sh -s -- -v x.y.z
Check https://github.com/wasp-lang/wasp/releases for the list of valid versions, including the latest one.
olinux@protheus:~/Sunlight$
GitHub
Releases Β· wasp-lang/wasp
The fastest way to develop full-stack web apps with React & Node.js. - wasp-lang/wasp
Wohooo @olinux, you just became a Waspeteer level 1!
Did you generate your project with Mage or some other LLM powered tool? The
@wasp/...
doesn't exist, it existed before Wasp 0.12.0
which was a long time ago.534 / 5β―000
Thanks for your question. I've been exploring the use of large-scale language models, like ChatGPT, for some features of my Wasp project. These tools offer interesting capabilities for automating and improving development processes. Here's a link to the specific tool I've been considering: https://chatgpt.com/g/g-JhAxTAh0L-wasp-lang-gpt. I'm always looking for advice on how best to effectively integrate these technologies into my application.