Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/daniel-le97/socket-nuxt


https://github.com/daniel-le97/socket-nuxt

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

# Nuxt 3 and Socket test

Learn More:
- [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction)
- [Socket runtime documentation](https://socketsupply.co/)

all nuxt configuration to get this working can be found in /modules/gui

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

when running this you may see the following in the console,
it doesnt seem to actually break anything
```js
ServiceWorker failed to register in preload: server/index.mjs
```

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

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```