Hoesnelwasik will be component based work using the modern HTML5 techniques.
A view good tutorials to get started
The master branch is build automatically and deployed to beta.hoesnelwasik.nl
What | Description | Issues |
---|---|---|
Integration with Paparazzi | Load image of a team | Webcie |
Firebase cloud messaging | Send notification to users | - |
First, install Polymer CLI using npm (we assume you have pre-installed node.js).
npm install -g polymer-cli
This command serves the app at http://localhost:8080
and provides basic URL
routing for the app:
polymer serve --open
Add --hostname 0.0.0.0 as parameter to be able to navigate to the app from a different client while developing
This command performs HTML, CSS, and JS minification on the application
dependencies, and generates a service-worker.js file with code to pre-cache the
dependencies based on the entrypoint and fragments specified in polymer.json
.
The minified files are output to the build/unbundled
folder, and are suitable
for serving from a HTTP/2+Push compatible server.
In addition the command also creates a fallback build/bundled
folder,
generated using fragment bundling, suitable for serving from non
H2/push-compatible servers or to clients that do not support H2/Push.
polymer build --add-service-worker --css-minify --html-minify --js-minify
For or stupid browsers:
polymer build --bundle --css-minify --html-minify --js-minify --js-compile
This command will run Web Component Tester against the browsers currently installed on your machine:
polymer test