Skip to content
This repository has been archived by the owner on Aug 4, 2018. It is now read-only.

Comcast/polymer-skeleton

 
 

Repository files navigation

GitHub release Build Status GitHub issues XO code style Polymer Skeleton

Polymer Skeleton: Polymer 3 Progressive Web App (DEMO)

A mininum boilerplate to deliver a Polymer 3.x with Webpack, PostCSS and Service Workers ready. Made for personal use, glad if someone can get a good starting point from here. Bye bye Bower.

Features

Loaders

Supported Browsers

All modern browsers. 🕶

But as the features said, we are also transpiling the bundle for "oldie" browsers. Of course we are not covering things like IE11.

Usage

Clone this repository:

git clone https://github.com/PolymerX/polymer-skeleton [your-app-name]

Remove the .git folder and change details within:

  • package.json
  • src/manifest.json

Then start building your application!

yarn

Developing

Start the webpack-dev-server on localhost http://localhost:3000 with hot-reload and watch on .postcss files.

For "oldie" browsers, transpiling also Javascript class. Works on Firefox:

yarn dev

For modern browsers with class support. Works on Chrome, Safari, and Edge:

yarn dev:module

Test

XO for code style, Stylelint for PostCSS linting, and WCT for components tests:

yarn test

Run Lighthouse for testing the PWA capabilities:

yarn test:lighthouse

Build

(Almost) production-ready (webpack --optimize-minimze and copy statics) to dist folder. Also generating Service Workers. The command will also create the module version of the bundle ready to be loaded as type=module.

yarn build

Styling components with PostCSS and CSSNext

During development .postcss files will be watched, compiled and injected to the relative <style> tag within the component template. The CSS is scoped to the component so don't worry about CSS specificity, you can also use :host, :host-context and :root selectors. Read more about styling web components and custom CSS properties.

Cssnext also includes Autoprefixer plugin, if you don't know how it works (...and you should), it allows you to write CSS without worrying about vendor prefixes. Just write your css properties prefix-free and let autoprefixer do the work for you when compiling.

How about commons styles? You can simply import any other .postcss file within your main component .js file and print it inside the template().

How Polymer 3 is imported

We are currently using a modified version of the @polymer/polymer official NPM version. The flat property within the package.json is causing some problems with the load dependency system of webpack.

We are getting the webpcomponents-lite.js polyfill from GitHub using NPM/Yarn and copying it into a vendor folder with a Node script. Currently, the webcomponents-loader.js has a bug for Firefox and we can't use it.

custom-element-es5-adpater.js

Loading the custom-element-es5-adapter.js is necessary because the custom elements known(1) issue(2) (the lovely Uncaught TypeError: Class constructor PolymerElement cannot be invoked without 'new') about ES6 classes, but just on old browsers.

Contributors

Name Website
Alessio Occhipinti https://godev.space
Mattia Astorino http://equinsuocha.io/

License

PolymerX © MIT

About

💀 Skeleton for Polymer 3 app with Webpack, PostCSS and Service Workers ready.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 59.4%
  • HTML 40.6%