Gathering detailed insights and metrics for artprompt-trpc-client
Gathering detailed insights and metrics for artprompt-trpc-client
Gathering detailed insights and metrics for artprompt-trpc-client
Gathering detailed insights and metrics for artprompt-trpc-client
🧙♀️ Move Fast and Break Nothing. End-to-end typesafe APIs made easy.
npm install artprompt-trpc-client
Typescript
Module System
Node Version
NPM Version
TypeScript (80.91%)
MDX (16.97%)
JavaScript (1.09%)
CSS (1.03%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
37,826 Stars
4,635 Commits
1,386 Forks
89 Watchers
47 Branches
474 Contributors
Updated on Jul 13, 2025
Latest Version
10.0.0-proxy-alpha.74
Package Id
artprompt-trpc-client@10.0.0-proxy-alpha.74
Unpacked Size
163.14 kB
Size
36.68 kB
File Count
96
NPM Version
8.12.1
Node Version
18.5.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
End-to-end typesafe APIs made easy
@trpc/client
Communicate with a tRPC server on the client side.
Full documentation for @trpc/client
can be found here
1# npm 2npm install @trpc/client@next 3 4# Yarn 5yarn add @trpc/client@next 6 7# pnpm 8pnpm add @trpc/client@next
1import { createTRPCClient, createTRPCClientProxy } from '@trpc/client'; 2// Importing the router type from the server file 3import type { AppRouter } from './server'; 4 5// Initializing the tRPC client 6const client = createTRPCClient<AppRouter>({ 7 url: 'http://localhost:2022', 8}); 9 10// Creating a proxy, this allows for cmd+click to the backend function. 11const proxy = createTRPCClientProxy(client); 12 13async function main() { 14 // Querying the greeting 15 const helloResponse = await proxy.greeting.query({ 16 name: 'world', 17 }); 18 19 console.log('helloResponse', helloResponse); // Hello world 20} 21 22main();
No vulnerabilities found.
Reason
30 commit(s) and 16 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
SAST tool is run on all commits
Details
Reason
Found 21/29 approved changesets -- score normalized to 7
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
46 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More