Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/nuxt-hub/starter

Nuxt template to build a full-stack application on Cloudflare, with zero configuration.
https://github.com/nuxt-hub/starter

cloudflare d1 fullstack kv nuxt nuxthub r2 vue

Last synced: 6 days ago
JSON representation

Nuxt template to build a full-stack application on Cloudflare, with zero configuration.

Lists

README

        

# NuxtHub Starter Template

This starter lets you get started with [NuxtHub](https://hub.nuxt.com) in seconds.

- [Documentation](https://hub.nuxt.com)

## Features

- Image upload with [`hubBlob()`](http://hub.nuxt.com/docs/storage/blob)
- Save chat messages with [`hubDatabase()`](http://hub.nuxt.com/docs/storage/database)
- Save server redirects with [`hubKV()`](http://hub.nuxt.com/docs/storage/kv)
- Cache an API response with [`cachedEventHandler()`](https://hub.nuxt.com/docs/server/cache)
- Generate the API documentation with Scalar within the [NuxtHub Admin](https://admin.hub.nuxt.com)

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Check out the [deployment documentation](https://hub.nuxt.com/docs/getting-started/deploy) for more information.