Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 483 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 483 Bytes

tRPC + Jest

This project includes a simple tRPC server with one route and a testing file.

Getting Started

To get started, clone the repository and install the necessary dependencies by running:

git clone https://github.com/mateusabelli/trpc-jest

cd trpc-jest

pnpm install

Project structure

/greeting a route that takes in a JSON body parameter "text" and returns "Hello [text]" The tests for the routes are located in the __tests__ directory.