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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hosterai/nuxt

v1.0.0

Published

Nuxt integration for Hoster.AI client with useFetch support

Readme

@hosterai/nuxt

Nuxt 3 & 4 module for Hoster.AI with useFetch support, SSR, and auto-imports.

Installation

pnpm add @hosterai/core @hosterai/nuxt

Setup

Add to your nuxt.config.ts:

export default defineNuxtConfig({
  modules: ['@hosterai/nuxt'],
  
  hoster: {
    baseURL: 'https://api.hoster.ai'
  }
});

Usage

Using useHosterApi (Recommended - Fully Typed)

Combines typed Client methods with Nuxt reactivity (SSR, caching, reactive data):

<script setup lang="ts">
// Fully typed with autocomplete + SSR + caching!
const { data: users, status, refresh } = await useHosterApi(
  (client) => client.users().findUsers()
);

// With parameters - full type inference
const { data: user } = await useHosterApi(
  (client) => client.users().findUser({ id: '123' })
);

// Reactive watch - auto-refetch when userId changes
const userId = ref('123');
const { data: userDetails } = await useHosterApi(
  (client) => client.users().findUser({ id: userId.value }),
  { watch: [userId] }
);
</script>

<template>
  <div v-if="status === 'pending'">Loading...</div>
  <div v-else-if="users">
    <div v-for="user in users" :key="user.id">{{ user.name }}</div>
  </div>
</template>

Using useHosterLazyApi (Non-blocking, Typed)

<script setup lang="ts">
// Doesn't block navigation - data fetched after page loads
const { data: products, status, execute } = useHosterLazyApi(
  (client) => client.products().findProducts()
);

// Manually trigger fetch when needed
await execute();
</script>

Using useHosterFetch (URL-based)

For cases where you need direct URL access:

<script setup>
const { data, status, error } = await useHosterFetch('/users');

// With query params
const { data: products } = await useHosterFetch('/products', {
  params: { page: 1, limit: 10 }
});

// POST request
const { data: newUser } = await useHosterFetch('/users', {
  method: 'POST',
  body: { name: 'John', email: '[email protected]' }
});
</script>

<template>
  <div v-if="status === 'pending'">Loading...</div>
  <div v-else-if="error">Error: {{ error.message }}</div>
  <div v-else-if="data">{{ data }}</div>
</template>

Using useHosterLazyFetch (Non-blocking, URL-based)

<script setup>
// Doesn't block navigation - data fetched after page loads
const { data, status, execute } = useHosterLazyFetch('/users');

// Manually trigger fetch when needed
const refresh = () => execute();
</script>

Using the Client Directly

For imperative calls without reactivity:

<script setup lang="ts">
const hoster = useHoster();

// Set token (e.g., from auth state)
hoster.setAccessToken(authToken);

// Direct typed API calls
const { body: users } = await hoster.users().findUsers();
const { body: invoices } = await hoster.invoices().findInvoices();
</script>

Setting Auth Token

Create a plugin to set the token globally:

// Nuxt 3: plugins/hoster-auth.ts
// Nuxt 4: app/plugins/hoster-auth.ts
export default defineNuxtPlugin(() => {
  const hoster = useHoster();
  const auth = useAuth(); // your auth composable
  
  watch(() => auth.token, (token) => {
    if (token) {
      hoster.setAccessToken(token);
    }
  }, { immediate: true });
});

Nuxt 4 Compatibility

This module is fully compatible with Nuxt 4. Key differences:

  • Directory structure: In Nuxt 4, plugins go in app/plugins/ instead of plugins/
  • Data defaults: data and error default to undefined instead of null
  • Status checks: Use status === 'success' instead of !pending for reliable checks

API

Composables

| Composable | Description | |------------|-------------| | useHosterApi(fetcher, options) | Recommended - Fully typed API calls with Nuxt reactivity | | useHosterLazyApi(fetcher, options) | Non-blocking typed API calls | | useHoster() | Direct access to the typed Client instance | | useHosterFetch(path, options) | URL-based requests with useFetch | | useHosterLazyFetch(path, options) | Non-blocking URL-based requests |

Module Options

interface ModuleOptions {
  baseURL?: string; // API base URL (default: 'https://api.hoster.ai')
}