Note: this is my v4 boilerplate for React web apps. See also nextjs-pwa-graphql-sql-boilerplate, nextjs-sql-rest-api-boilerplate and nextjs-express-mongoose-crudify-boilerplate.
This is a great template for a any project where you want React (with Hooks) (with server-side rendering, powered by Next.js) as frontend and Firebase as backend. Lightning fast, all JavaScript.
- Great starting point for a PWA (Progressive Web App), which you can add to your Home Screen and use as a full-screen app.
- PWA features such as
manifest.json
and offline support (next-offline
). - Can be deployed as serverless functions on Vercel/Zeit Now.
- The new Firebase database, Cloud Firestore, as database.
- Login/Signup with Firebase Authentication.
- React Hooks for business logic.
- Free-form database model. No GraphQL or REST API, just add React Hooks and modify
[page].getServerSideProps
(for server-side rendering, SSR) when changing/adding database tables. - Easy to style the visual theme using CSS (e.g. using Design Profile Generator).
sitemap.xml
androbots.txt
support.- Google Analytics and
google-site-verification
support (seeconfig/config.js
). - Flexible configuration with
config/config.js
and.env.local
file. - Code linting and formatting with StandardJS (
yarn lint
/yarn fix
). - Unit testing with Jasmine (
yarn unit
, not yet included). - Great page speed, see Lighthouse score:
See source.
Setup and deploy your own project using this template with Vercel. All you'll need is your Firebase Public API Key.
Note: If you set up your project using the Deploy button above, you only need to clone your own repo instead of this repository.
Clone this repository:
git clone https://github.com/tomsoderlund/nextjs-pwa-firebase-boilerplate.git [MY_APP]
Remove the .git folder since you want to create a new repository
rm -rf .git
Install dependencies:
cd [MY_APP]
yarn # or npm install
Set up the database:
Configure the .env.local
file.
Start it by doing the following:
yarn dev # or 'yarn vercel' to run with Vercel/Zeit Now serverless
In production:
yarn build
yarn start
If you navigate to http://localhost:3004/
you will see a web page with a list of articles (or an empty list if you haven’t added one).
Do search/replace for “nextjs-pwa-firebase-boilerplate” to something else.
Change name in public/manifest.json
The database item is called “Article”, but you probably want something else in your app.
Rename the files:
mv hooks/articles.js hooks/{newName}s.js
mkdir -p components/{newName}s
mv components/articles/AddArticleForm.js components/{newName}s/Add{NewName}Form.js
mv components/articles/ArticleDetails.js components/{newName}s/{NewName}Details.js
mv components/articles/ArticleList.js components/{newName}s/{NewName}List.js
mv components/articles/ArticleListItem.js components/{newName}s/{NewName}ListItem.js
rm -r components/articles
mkdir pages/{newName}s
mv "pages/articles/[slug].js" "pages/{newName}s/[slug].js"
rm -r pages/articles
Then, do search/replace inside the files for different casing: article
, Article
, ARTICLE
.
Do search/replace for “3004” to something else.
Delete lib/firebase.js
and modify hooks/articles.js
.
- Change colors in
public/manifest.json
- Change CSS in
public/app.css
- Change font(s) in
PageHead.js
You need to enable Email/Password authentication in https://console.firebase.google.com/u/0/project/MYAPP/authentication/providers
TODO: add SSR support: https://github.com/vercel/next.js/tree/canary/examples/with-firebase-authentication