Skip to content

Remote Functions. Instead of Event Handlers.

Notifications You must be signed in to change notification settings

gsxdsm/nuxt-rpc

 
 

Repository files navigation

nuxt-rpc

nuxt-rpc allows you to call your backend-functions from the frontend, as if they were local. No need for an extra language or DSL to learn and maintain. Based off of https://github.com/wobsoriano/nuxt-remote-fn

Install

npm install nuxt-rpc
export default defineNuxtConfig({
  modules: ['nuxt-rpc'],
});

Usage

Export your remote functions in server/rpc/**/*.{ts,js,mjs} (configurable) files:

// server/rpc/todo.ts

import { PrismaClient } from '@prisma/client';

const prisma = new PrismaClient();

export async function getTodos() {
  const todos = await prisma.todo.findMany();
  return todos;
}

Directly use any SQL/ORM query to retrieve & mutate data on client.

<script setup lang="ts">
const todos = await rpc().todo.getTodos();
</script>

<template>
  <TodoList :todos="todos" />
</template>

The server/rpc part of the path informs the module that this code should never end up in the browser and to convert it to an API call instead (POST /api/__rpc/todo/getTodos). You can adjust the search path using the paths configuration value (and add multiple search paths).

Checkout the playground example.

Directories

Files can be nested under subdirectories of server/rpc, which will be added to the function signature - this can be useful for adding middleware checks. Ex:

./server/rpc/public/todos.ts

export function getTodos(){
  ...
}

Would be addressable by public_todos.getTodos(). Middleware can check for the path prefix to perform auth and other functions.

You can also create an index.ts file in a sub directory under rpc to use the directory name as the rpc name.

./server/rpc/public/todos/index.ts

export function getTodos(){
  ...
}

The example above would be addressible from public_todos.getTodos()

Custom client options

You can control caching behavior (default off) and fetch options in the rpc client constructor:

index.vue

<script setup lang="ts">
const postsClient = rpc({
  cache: true, //default no caching of calls
  fetchOptions: {
    headers: {
      Authorization: 'Bearer token',
    },
  },
}).posts;
const post = postsClient.getPost(1);
</script>

<template>
  <div>
    <span>Post: </span>
    <span>{{ post?.title }}</span>
  </div>
</template>

All capabilities of $fetch are availabile, including callbacks:

const client = rpc({
  fetchOptions: {
    onRequest({ request }) {
      // do something
    },
  },
});

Caching

By default calls to the same function are not cached - if you aren't using useAsyncData this means during SSR hydration the function will be called twice. Caching implementation is mostly derived from nuxt-server-fn. When caching is enabled all calls are cached with the useState() hook under the hood. Multiple calls to the same arguments will reuse the same result across client and server sides for hydration.

const todos = await rpc().todo.getTodos(); //Will use whatever the default caching strategy is (usually false).
const cachedTodos = await rpcCached().todo.getTodos(); //Will always cache the call, be aware on mutations
const uncachedTodos = await rpcCacheless().todo.getTodos(); //Will never cache the call

let doCache = someCacheSetting(); //Dynamically get the cache type at runtime
const dynamicCachedTodos = await rpc({ cache: doCache }).todo.getTodos(); //Will cache depending on the output of someCacheSetting()

An alternative to controlling the cache via the rpc client options is using useAsyncData (see below).

Settings and default

The following config settings (and their defaults) are available:

  rpc: {
    apiRoute: '/api/__rpc', //route to use for incoming calls
    paths: ['/server/rpc/', '/server/functions/'], //paths to search for functions
    cacheDefault: false, //If the default rpc() client caches calls
    rpcClientName: 'rpc', //Name of the default client (auto imported)
    rpcCachedClientName: 'rpcCached', //Version of the default client with caching enabled (auto imported)
    rpcCachelessClientName: 'rpcCacheless', //Version of the defautl client with no caching (auto imported)
  },

H3 Event

The useH3Event hook provides the event object of the current request. You can use it to check headers, log requests, or extend the event's request object.

import { useH3Event } from 'nuxt-rpc/server';
import { getRequestHeader, createError } from 'h3';
import { decodeAndVerifyJwtToken } from '~/somewhere/in/utils';

export async function addTodo(todo: Todo) {
  const event = useH3Event();

  async function getUserFromHeader() {
    const authorization = getRequestHeader(event, 'authorization');
    if (authorization) {
      const user = await decodeAndVerifyJwtToken(authorization.split(' ')[1]);
      return user;
    }
    return null;
  }

  const user = await getUserFromHeader();

  if (!user) {
    throw createError({ statusCode: 401 });
  }

  const result = await prisma.todo.create({
    data: {
      ...todo,
      userId: user.id,
    },
  });

  return result;
}

You can use all built-in h3 utilities inside your exported functions.

createContext

Each rpc file can also export a createContext function that is called for each incoming request:

export function createContext() {
  const event = useH3Event();

  async function getUserFromHeader() {
    const authorization = getRequestHeader(event, 'authorization');
    if (authorization) {
      const user = await decodeAndVerifyJwtToken(authorization.split(' ')[1]);
      return user;
    }
    return null;
  }

  event.context.user = await getUserFromHeader();
}

export async function addTodo(todo: Todo) {
  const event = useH3Event();

  if (!event.context.user) {
    throw createError({ statusCode: 401 });
  }

  // addTodo logic
}

useAsyncData

nuxt-rpc can work seamlessly with useAsyncData:

<script setup lang="ts">
const { getTodos } = rpc().todo;
const { data: todos } = useAsyncData('todos', () => getTodos());
</script>

Why this module

Sharing data from server to client involves a lot of ceremony. i.e. an eventHandler needs to be set up and useFetch needs to be used in the browser.

Wouldn't it be nice if all of that was automatically handled and all you'd need to do is import getTodos on the client, just like you do in eventHandler's? That's where nuxt-rpc comes in. With nuxt-rpc, all exported functions from server/rpc files automatically become available to the browser as well.

This module builds upon the great work of nuxt-remote-fn and adds support for Nuxt 4 as well as organizing remote functions under server/rpc instead of looking for .server. in the filename (which can cause issues with server plugins and components).

Development

  • Run cp playground/.env.example playground/.env
  • Run pnpm dev:prepare to generate type stubs.
  • Use pnpm dev to start playground in development mode.

Credits

This project is inspired by tRPC, Telefunc and nuxt-server-fn. It is directly forked from nuxt-remote-fn

License

MIT

About

Remote Functions. Instead of Event Handlers.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 87.1%
  • Vue 11.2%
  • JavaScript 1.7%