eipiai
v0.6.3
Published
The simplest way to connect a client to a server while bypassing any HTTP features designed for server-side rendering.
Downloads
138
Readme
eipiai
The simplest way to connect a client to a server while bypassing any HTTP features designed for server-side rendering.
- 🎓 End-to-end server/client type safety with TypeScript
- 🪶 Tiny client footprint
0.2 kB
forv0.3.1
- 💯 Server adapters for Elysia
- 🌳 Custom variables automatically shared among routes
import { client } from 'eipiai'
import type { routes } from './server'
const server = client<typeof routes>({ url: 'http://localhost:3000/api' })
const { error, data } = await server.getPost(3)
On the client you'll import only the type definitions from the server. This way you'll get the most up-to-date types without anything ending up in the resulting client bundle.
import { Elysia } from 'elysia'
import { api, route, z } from 'eipiai'
import { eipiai } from 'eipiai/elysia'
export const routes = api({
getPost: route(z.number())((_, id) => { return id * 2 })
})
new Elysia().use(eipiai(routes, { path: 'api' })).listen(3000)
On the server, in this case implemented with Bun's Elysia you define the routes with their types and the handler. The plugin will then inject the required POST endpoint on the desired path.
[!TIP] Enable TypeScript
"strict": true
mode in yourtsconfig.json
to allow for optimal object schema inference.
Vercel
While not perfectly suited for Vercel Serverless functions it can still work. All routes will be handled by a single function inside the /api
folder of your project. For this export the server as a POST variable. Regular TypeScript Serverless functions won't be able to handle a TypeScript dependency like this one unfortunately, so you'll have to bundle the file and inline all eipiai imports. To configure the route path, place the file at that location in the file system.
import { vercel } from 'eipiai/vercel'
import { routes } from './server'
export const POST = vercel(routes)
Real-time Communication
A websocket connection client can be used for real-time communication with the server.
import { Elysia } from 'elysia'
import { api, route, subscribe, z } from 'eipiai'
import { eipiai } from 'eipiai/elysia'
import { socket } from 'eipiai/socket'
export const routes = api({
// Subscribe to any changes to posts.
subscribePosts: subscribe()
// Subscribe to updates for a specific post.
subscribePost: subscribe(z.object({ id: z.number() })),
// Can be mixed with regular routes, also sent through socket.
allPosts: route()((_) => { return [{ id: 0, text: 'Hello World' }] })
})
const path = 'data'
const { inject, subscriptions } = socket(methods, { path })
new Elysia().use(inject).listen(port)
const url = new URL(path, `ws://localhost:${port}`).toString()
console.log(`Websocket running on ${url}!`)
subscriptions.subscribePosts([{ id: 0, text: 'Hello World' }, { id: 1, text: 'Hello Again!' }])
subscriptions.subscribePost({ id: 0, text: 'Hello Again!' })
On the client make sure to use socketClient
to start a websocket connection.
import { socketClient } from 'eipiai'
import type { routes } from './server'
const server = socketClient<typeof routes>({ url: 'ws://localhost:3000/api' })
await server.subscribePosts((posts) => console.log(posts))
await server.subscribePost((post) => console.log(post.id === 0), { id: 0 })
const { error, data } = await server.allPosts()
Externally Importing Routes
For the client, all you need from the server are the types. Because of this, it is possible to conditionally import these from an external location that is only available locally using the following trick. This will ensure that the types are available locally where you actually need them, without causing an error in the CI or when running the client separately in production.
import { client } from 'eipiai'
let routes: typeof import('../server/routes').routes | undefined
export const server = client<typeof routes>()