Tiller

코드 한 줄로
서버리스 클라우드 완벽 구현

코드 한 줄로 간단한 구현
복잡한 설정 없이 빠르게 시작하세요.
서버리스 배포 완벽 대응
클라우드 환경에 최적화된 자동 확장 지원.

Tiller Auth

강력한 인증과 권한 관리, 팀 협업까지 한 번에

강력한 보안
최신 암호화와 이상행동 감지로 안전하게.
FGA 지원
세분화된 리소스 권한 제어를 코드 한 줄로.
그룹/팀 초대
팀 리소스 초대와 협업을 손쉽게 구현.

간단한 코드 예시

import { TillerAuth } from '@takeup/tiller';
const auth = new TillerAuth({ apiKey: 'your-api-key', projectId: 'your-project-id' });
const user = await auth.signIn(email, password);
const canAccess = await auth.checkPermission({ user: user.id, action: 'write', resource: 'documents/financial/report-2023' });

Tiller Pay

모든 결제, 구독, 인보이스를 한 번에

다양한 결제 방식
카드, 이체, 해외결제, 간편결제까지 지원.
구독/정기결제
자동 갱신, 유연한 가격, 비례 환불까지.
문서 자동화
견적서, 인보이스, 영수증 자동 발급.

간단한 코드 예시

import { TillerPay } from '@takeup/tiller';
const payment = new TillerPay({ apiKey: 'your-api-key', projectId: 'your-project-id' });
const paymentResult = await payment.charge({ amount, currency, paymentMethod: method, customer: customerInfo });
const invoice = await payment.createInvoice({ paymentId: paymentResult.id, items: [{ name: '프리미엄 구독', amount }] });

Tiller Sign

약관, 계약, 동의 관리까지 자동화

전자 서명
법적 효력 있는 전자 서명과 계약 관리.
자동 알림
만료 임박, 동의 요청 등 실시간 알림.
통합 대시보드
모든 문서와 동의 현황을 한눈에.

간단한 코드 예시

import { TillerSign } from '@takeup/tiller';
const legal = new TillerSign({ apiKey: 'your-api-key', projectId: 'your-project-id' });
const requiredTerms = await legal.getRequiredTerms({ user: userId, locale: 'ko-KR' });
const contract = await legal.createContract({ template: templateId, parties, data });