Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/razorcx-courses/nuxt3-server-faker
Nuxt 3 Server and Faker API Starter
https://github.com/razorcx-courses/nuxt3-server-faker
faker fakerjs nuxt nuxt-api nuxt-server nuxt3 nuxt3-starter server
Last synced: about 2 months ago
JSON representation
Nuxt 3 Server and Faker API Starter
- Host: GitHub
- URL: https://github.com/razorcx-courses/nuxt3-server-faker
- Owner: razorcx-courses
- Created: 2022-04-28T18:38:46.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-28T19:43:28.000Z (almost 3 years ago)
- Last Synced: 2024-11-06T02:45:36.377Z (3 months ago)
- Topics: faker, fakerjs, nuxt, nuxt-api, nuxt-server, nuxt3, nuxt3-starter, server
- Language: Vue
- Homepage:
- Size: 143 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Server and Faker API Starter
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment) for more information.