Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jigintern/online-2024-e
🍸 Cocktail Message App
https://github.com/jigintern/online-2024-e
cocktail deno hono typescript
Last synced: about 1 month ago
JSON representation
🍸 Cocktail Message App
- Host: GitHub
- URL: https://github.com/jigintern/online-2024-e
- Owner: jigintern
- Archived: true
- Created: 2024-08-30T02:12:43.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-06T08:11:16.000Z (2 months ago)
- Last Synced: 2024-09-26T06:34:00.266Z (about 1 month ago)
- Topics: cocktail, deno, hono, typescript
- Language: TypeScript
- Homepage: https://cocktail-message.deno.dev
- Size: 223 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: .github/README.md
Awesome Lists containing this project
README
# online-2024-e
## Backend
You can import the API entrypoints and the cocktail type with the following code:
```ts
import { hc } from "hono/client";
import type { API } from "/src/api/mod.ts";
import type { Cocktail, Message } from "/src/api/utils/types.ts";const client = hc("/api");
```For more information, see [the Hono RPC documentation](https://hono.dev/docs/guides/rpc#client).