
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
@aibind/nuxt
Advanced tools
AI SDK bindings for Nuxt — composables with defaults, server handlers, and agents
AI SDK bindings for Nuxt. Vue 3 composables, server handlers, and agents — all wired up with sensible defaults.
npm install @aibind/nuxt ai vue
Peer dependencies: vue ^3.3, ai ^6.0.
// server/api/__aibind__/[...path].ts
import { createStreamHandler } from "@aibind/nuxt/server";
import { anthropic } from "@ai-sdk/anthropic";
const handler = createStreamHandler({
model: anthropic("claude-sonnet-4-20250514"),
});
export default defineEventHandler(async (event) => {
return handler(toWebRequest(event));
});
<script setup lang="ts">
import { useStream } from "@aibind/nuxt";
const { text, loading, send } = useStream({
system: "You are a helpful assistant.",
});
const prompt = ref("");
</script>
<template>
<form @submit.prevent="send(prompt)">
<input v-model="prompt" />
<button :disabled="loading">Send</button>
</form>
<p v-if="text">{{ text }}</p>
</template>
| Import Path | What You Get |
|---|---|
@aibind/nuxt | useStream, useStructuredStream, defineModels |
@aibind/nuxt/server | createStreamHandler, ServerAgent |
@aibind/nuxt/agent | useAgent |
@aibind/nuxt/history | ReactiveChatHistory, ReactiveMessageTree |
@aibind/nuxt/markdown | StreamMarkdown |
@aibind/nuxt/project | Project |
Full documentation, API reference, and guides: aibind.dev
MIT
FAQs
AI SDK bindings for Nuxt — composables with defaults, server handlers, and agents
The npm package @aibind/nuxt receives a total of 9 weekly downloads. As such, @aibind/nuxt popularity was classified as not popular.
We found that @aibind/nuxt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.