FAQ

This project is no longer under development.
See the project README for more details.

We often get very similar questions across issues and PRs, and we figured it would be useful to list them here, for a reference.

Replace an existing library with a different one

Sample issues: #201, #195

We built pwa-starter kit (both the included templates and the sample apps) to be a good starting point for building a fairly complex PWA. This means that we had to make some decisions about which components, libraries and patterns to use – these decisions were made around ease of use, popularity, and available documentation. There are many other options and libraries that are objectively good choices, and at the end of the day they all come down to a matter of personal preference. Since that’s not something that everyone can come to a consensus on, it’s unlikely that we will change an existing choice for a new one. You can, of course, replace any bits and pieces of pwa-starter-kit in your application.

Add example of using a library/framework

Sample issues: #196, #201

pwa-starter-kit is not meant to replace any frameworks or application architecture patterns – it’s meant to get you started towards building a complex PWA, but does not promise to build the entire thing for you. The templates are built in such a way that most JS libraries can be plugged in, since they don’t rely on a specific application structure. However, providing an example for each one of these patterns and libraries is a daunting task (and is generally applicable to a very small number of people).

If you’re looking for a good starting point of where to plug in a library, store.js is a good starting point – it’s the place in the application that initializes Redux, which is a library that we plugged in, so your might need something similar.

Can’t add libraries not distributed as an ES module (ESM)

Sample issues: #199

Libraries must provide ES modules (ESM) - other module formats, such as UMD, module.exports, AMD, CommonJS, etc., are not compatible with Polymer build tools.

Alternatively, you can use another build tool (e.g. webpack, Rollup). See the below FAQ for webpack.

Using webpack/other build tools

pwa-starter-kit is written with ES modules which is compatible with a variety of JavaScript build tools. For example, take a look at the webpack branch.

I’m getting errors when running the tests

Sample issues: #193

The integration tests are fairly fragile, and require that you have the correct setup for the screenshot testing to match the expected output. When in doubt, test results from Travis CI should be considered as correct.