Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daniel-le97/socket-nuxt
https://github.com/daniel-le97/socket-nuxt
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/daniel-le97/socket-nuxt
- Owner: daniel-le97
- License: mit
- Created: 2024-05-03T04:01:25.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-12T16:41:42.000Z (8 months ago)
- Last Synced: 2024-12-09T14:57:58.988Z (about 1 month ago)
- Language: JavaScript
- Size: 1.12 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```