Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidroyer/nuxt2-ssr-firebase
Nuxt2 Universal App with SSR via Firebase Functions and Firebase Hosting
https://github.com/davidroyer/nuxt2-ssr-firebase
firebase firebase-functions nuxt nuxt-edge nuxt2 nuxtjs ssr vue
Last synced: about 2 months ago
JSON representation
Nuxt2 Universal App with SSR via Firebase Functions and Firebase Hosting
- Host: GitHub
- URL: https://github.com/davidroyer/nuxt2-ssr-firebase
- Owner: davidroyer
- Created: 2018-06-09T03:34:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T19:35:11.000Z (about 2 years ago)
- Last Synced: 2024-04-14T13:03:23.800Z (8 months ago)
- Topics: firebase, firebase-functions, nuxt, nuxt-edge, nuxt2, nuxtjs, ssr, vue
- Language: JavaScript
- Homepage: https://nuxt2ssrfire.firebaseapp.com
- Size: 2.6 MB
- Stars: 50
- Watchers: 7
- Forks: 10
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt.js Universal App with SSR via Firebase Functions and Firebase Hosting - **_Nuxt 2 Version_**
Host a Nuxt Universal app or site by combining Nuxt.js with Firebase Cloud Functions and Hosting.
[Live Preview](https://nuxt2ssrfire.firebaseapp.com)
---
## Pre-Setup: Before Installing Any Dependencies
1. Obtain a Firebase Project ID to use for this project. [See Overiew Here](#firebase-project-setup)
2. Inside this directory, locate the file `.firebaserc.sample`, and do the following:
- Rename this file to `.firebaserc`
- Inside this file, replace `your-project-id` with your Firebase Project ID.---
## Setup
We will now get everything setup and deployed in 3 commands:
**Note:** _All of these commands are ran from the root directory_
1. Install Dependencies in all necessary directories in 1 command
```bash
yarn setup
# OR
npm run setup
```2. Build The Project
```bash
yarn build
# OR
npm run build
```3. Deploy To Firebase
```bash
yarn deploy
# OR
npm run deploy
```**_Your site should now be live!_**
---
## Development
There are 2 development options.
### 1. _Without_ Firebase Functions
This will be like a normal Nuxt development experienced.
```bash
yarn dev
```### 2. _With_ Firebase Functions
This uses Firebase's local development tools to test our project
```bash
yarn serve
```---
### Firebase Project Setup
1. Create a Firebase Project using the [Firebase Console](https://console.firebase.google.com).
2. Obtain the Firebase Project ID
### Features
- Server-side rendering with Firebase Hosting combined with Firebase Functions
- Firebase Hosting as our CDN for our publicPath (See nuxt.config.js)### Things to know...
- You must have the Firebase CLI installed. If you don't have it install it with `npm install -g firebase-tools` and then configure it with `firebase login`.
- If you have errors, make sure `firebase-tools` is up to date. I've experienced many problems that were resolved once I updated.
* The root directory has a package.json file with several scripts that will be used to optimize and ease getting started and the workflow
* ALL commands are ran from the root directory