A robust financial management and expense control API built with Fastify, Prisma, Zod, JWT, and Bcrypt. This API allows secure authentication, user management, and financial transaction tracking to support financial management applications.
- User Authentication: Secure login with JWT.
- Data Validation: Strong validation using Zod.
- Password Security: Hashing and verification with Bcrypt.
- Database ORM: Prisma for robust and easy database management.
- Fast and Lightweight: Built with Fastify for performance.
- Financial Management: Manage income, expenses, and budget efficiently.
- Node.js
- Fastify
- Prisma
- Zod
- JWT (JsonWebToken)
- Bcrypt
- PostgreSQL
financial-management-api/
├─ controllers/ # Business logic
├─ lib/ # External library configurations (e.g., Prisma client)
├─ middlewares/ # Authentication and validation middleware
├─ models/ # Interfaces of TS
├─ routes/ # API endpoints
├─ tests/ # Unit and integration tests
└─ index.ts # Application entry point
git clone https://github.com/johnnyFR26/api.thinktech.git
cd api.thinktech
npm install
Create a .env
file in the root directory with the following variables:
DATABASE_URL="file:./dev.db" # For SQLite (or use a PostgreSQL connection string)
JWT_SECRET="your_secret_key"
npx prisma migrate dev --name init
npm run dev
Access at: http://localhost:3000
POST /auth/login
- Authenticate a user and receive a JWT.
GET /users
- Get all users.POST /users
- Create a new user.
GET /transactions
- Get all financial transactions.POST /transactions
- Create a new transaction.DELETE /transactions/:id
- Delete a transaction.
npm run test
- Store secrets in environment variables.
- Hash passwords before saving to the database.
- Validate all input with Zod.
- Use HTTPS in production.
This project is licensed under the MIT License.
Feel free to open issues or submit pull requests to help improve this project!