Package Exports
- @nuxthub/core
- @nuxthub/core/nuxt.config.ts
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nuxthub/core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
NuxtHub
Build full-stack applications with Nuxt on CloudFlare, with zero configuration.
Features
- Query an SQLite database with
hubDatabase() - Access key-value storage with
hubKV() - Store files with
hubBlob()
Read more on https://hub.nuxt.com
Quick Setup
- Install
@nuxthub/coredependency to your project:
npx nypm@latest add @nuxthub/core- Install
wranglerdevelopment dependency to your project:
npx nypm@latest add -D wrangler- Add
@nuxthub/coreto theextendssection ofnuxt.config.ts
export default defineNuxtConfig({
extends: [
'@nuxthub/core'
]
})That's it! You can now NuxtHub features in your Nuxt app ✨
Contributing
# Install dependencies
pnpm i
# Generate type stubs
pnpm dev:prepare
# Develop with the playground
pnpm dev
# Build the playground
pnpm dev:build
# Run ESLint
pnpm lint
# Run Vitest
pnpm test
pnpm test:watch
# Release new version
pnpm release