npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nuxt-rpc

v0.3.1

Published

Remote Functions. Instead of Event Handlers.

Downloads

267

Readme

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