mirror of
https://github.com/foomo/gotsrpc.git
synced 2026-04-16 18:54:26 +00:00
This example showcases gotsrpc's special Context function for centralized authentication. The Context function handles all authentication logic, keeping service methods clean and focused on business logic. Key principle: Centralized authentication via Context function - Context function validates Authorization header once - Service methods remain clean without auth boilerplate - Single point of authentication for entire service Example includes: - AuthService: Login/logout operations - HelloService: Demonstrates Context function pattern - Complete build system with Makefile - TypeScript client with proper ES6 modules - Comprehensive tests and documentation Files: example/auth/ (complete authentication example)
9 lines
129 B
JSON
9 lines
129 B
JSON
{
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"name": "@foomo/gotsrpc-examples",
|
|
"devDependencies": {
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|