how do you consume trpc endpoints from postman?
I'm currently trying to set up testing for a full stack project while using trpc. but im unsure how i can test if the trpc endpoints are working without having to write FE code. This could be useful during QA etc. has anyone tried this before?
Solution
Some 3rd party libraries:
Using postman is a bit awkward due to the RPC specification shape, there was a postman script which makes it easier to test using postman, search around on this discord server or through the issues on the main trpc repo, you'll find something.
trpc-panel: https://github.com/iway1/trpc-paneltrpc-playground: https://github.com/sachinraja/trpc-playgroundUsing postman is a bit awkward due to the RPC specification shape, there was a postman script which makes it easier to test using postman, search around on this discord server or through the issues on the main trpc repo, you'll find something.