Jump to content

FAQ

Here are some commonly asked questions about create-t3-app.

What’s next? How do I make an app with this?

We try to keep this project as simple as possible, so you can start with the most basic configuration and then move on to more advanced configuration.

If you are not familiar with the different technologies used in this project, please refer to the respective docs. If you still are in the wind, please join our Discord and ask for help.

What learning resources are currently available?

Although the resources listed below are some of the best that exist for the T3 Stack, the community (and Theo) recommend that you just start using the stack and learn along the way by building with it. If you’re looking for a solution like create-t3-app, chances are you might’ve already used some of the parts of the stack. So why not just dive headfirst and learn the other parts while you build something?!

Now, we realize this path doesn’t work for everyone. So, if you feel like you’ve tried the recommendation and would still like some resources, or you just aren’t confident doing it by yourself and/or feel overwhelmed by the stack, checkout these awesome tutorials on create-t3-app:

Articles

Videos

Why are there .js files in the project?

As per T3-Axiom #3, we take typesafety as a first class citizen. Unfortunately, not all frameworks and plugins support TypeScript which means some of the configuration files have to be .js files.

We try to emphasize that these files are javascript for a reason, by explicitly declaring its type (cjs or mjs) depending on what’s supported by the library it is used by. Also, all the js files in this project are still typechecked using a @ts-check comment at the top.