Code Monkey home page Code Monkey logo

polls's Introduction

Awesome

✨ Live polling tool @ polls.rijks.website


Build Status

What

Polls is a simple web-based tool which lets you create a poll to a share-able link. It allows other users to view and vote on the poll and see the results in real-time.

The app was built using some of the latest (and greatest) in web technology while also keeping the best practices of progressive enhancement in mind.

Features

http2 & Server push

http/2 allows the client to request and download all assets in parallel, which greatly improves load speeds. Server Push allows the server to push extra files to the browser on initial request. This comes in quite handy for files like the stylesheet and main JS file.

Without server push h2 without server push

Without server push h2 without server push

Nginx doesn't support http/2 between proxies and upstreams. The effects of this won't be visible on the live site.

Support (94.19%)

Not including streaming, couldn't find support stats for that one

  • IE (11+)
  • Edge (12+)
  • Firefox (36+)
  • Chrome (41+)
  • Safari (9+)
  • Opera (28+)
  • iOS Safari (9.2)
  • Opera Mini
  • Android Browser (56+)
  • Chrome for Android (57+)

Fallback

The server will automatically serve files over http/1.1 when http/2 isn't supported. The speed optimizations for http2 will result in a big performance hit on browser which don't support it. The big speed improvements for the large majority outweigh the performance issues on older browsers.

https

The app is being served over http/2 with a https certificate by Let's Encrypt and a improved Diffie Hellman group. This results in a very strong encryption.

SSL Report by SSL Labs
SSL Report results by SSL Labs

See my research on this for more information.

Support (100%)

This is specifically for my live lets encrypt certificate

  • IE (XP SP3+)
  • Edge
  • Firefox (2+)
  • Chrome
  • Safari (4+)
  • Opera
  • iOS Safari (3.1+)
  • Opera Mini
  • Android Browser (2.3.6+)
  • Chrome for Android

All browser support at least the now deprecated SSL spec. Most modern browser use TLS

Fallback

None. The site should and will be secure. There is no real reason to provide an unsecure version when the browser support is this great.

WebSockets

HTML5 WebSocket represents the first major upgrade in the history of web communications. Before WebSocket, all communication between web clients and servers relied only on HTTP. Now, dynamic data can flow freely over WebSocket connections that are persistent (always on), full duplex (simultaneously bi-directional) and blazingly fast. — Kaazing

WebSockets allow the application to update the poll results in real-time across all clients which are connected to the website.

Support (98.02%)

  • IE (10+)
  • Edge (12+)
  • Firefox (11+)
  • Chrome (16+)
  • Safari (5+)
  • Opera (11.5+)
  • iOS Safari (4.3+)
  • Opera Mini
  • Android Browser (4.4+)
  • Chrome for Android (57+)

Fallback

Polls implements the WebSocket protocol by using socket.io. Socket.io automagically switches between the older and current implementation of WebSockets or falls back to XHR when WebSockets aren't supported at all.
When socket.io fails or JS fails completely, the app still allows the user to create and vote on polls with regular post and get requests.

Virtual DOM

Updating the DOM when a vote comes through via socket is being handled by creating a new virtual representation (vdom) of the DOM and checking the differences with the previous vdom. These differences are then patched into the real DOM. This operation is way faster than inserting a newly rendered HTML string into the DOM.

Support (approx. 99.75%)

Virtual DOM isn't a browser API or new technique so it should technically run on all devices which run JavaScript. I assume Opera Mini won't run the JS, so that's why the support isn't a 100%.

Fallback

The virtual-dom rendering is also used on the server-side. When client-side JS fails or won't start at all, it will gracefully fall back to the server pre-rendered HTML. I won't update automatically anymore though, but new results can still be viewed by refreshing the page manually.

ServiceWorker

A service worker is a script that the browser runs in the background, separate from a web page. This is very exiting, because it allows developers to create webpages which support offline experiences.

Support (59.58%)

  • IE
  • Edge
  • Firefox (44+) (Partial)
  • Chrome (40+) (Partial)
  • Safari
  • Opera (27+) (Partial)
  • iOS Safari
  • Opera Mini
  • Android Browser (56+) (Partial)
  • Chrome for Android (57+) (Partial)

Fallback

As long as you don't rely on the ServiceWorker for the inner workings of your app, you'll be fine. ServiceWorkers work beautifully progressively enhanced on all browsers which support ServiceWorkers. It can be easily feature checked by checking

'serviceWorker' in navigator

CSS Font Loading API

Basically fontfaceobserver natively in the browser. Enables developers to run functionality when fonts are loaded.

// That's all. Wonderful
if ('FontFace' in window) {
  document.fonts.ready.then(() => {
    document.documentElement.classList.add('fonts-loaded');
  });
}

Support (59.58%)

  • IE
  • Edge
  • Firefox (41+)
  • Chrome (35+)
  • Safari (10+)
  • Opera (22+)
  • iOS Safari (10.2+)
  • Opera Mini
  • Android Browser (56+)
  • Chrome for Android (57+)

Fallback

If the browser doesn't support CSS Font Loading API, the custom won't be applied to the DOM. This results in fallback fonts for the headers.

What if..

.. JavaScript completely fails?

The core functionality of the app (creating and voting on polls) is also possible without JavaScript. The code that renders a virtual dom is also being used on the server. The output html will always be the same.
You'll lose the webSocket support of course, but you'll still be able to get up to date results by refreshing the page.

.. custom display font won't load?

I've used the native CSS Font Loading API to fire a function when the custom font has loaded. In this function, I add a class to the <html> element which then in turns applies the custom font. As long as the font isn't loaded — or isn't going to load at all — a default fallback font will be displayed.

.. I have deuteranopia, deuteranomaly, protanopia, or protanomaly?

You should be just fine

Color test

.. I currently reside in Bakkum?

The app will still load quite fast

App load on GPRS throttling Loading speed graph

Installation & Development

To run a local copy of the app:

$ git clone https://github.com/rijkvanzanten/polls
$ npm install

You'll need a local SSL-certificate:

$ openssl genrsa -des3 -passout pass:x -out server.pass.key 2048
...
$ openssl rsa -passin pass:x -in server.pass.key -out server.key
writing RSA key
$ rm server.pass.key
$ openssl req -new -key server.key -out server.csr
...
Country Name (2 letter code) [AU]:NL
State or Province Name (full name) [Some-State]:NoordHolland
...
A challenge password []:
...
$ openssl x509 -req -sha256 -days 365 -in server.csr -signkey server.key -out server.crt
$ npm start

The client-side assets can be generated by running

$ npm run build

To automatically re-generate the client-side assets on file change, run

$ npm run watch-client

To automatically restart the server on change run:

$ npm run watch-server

TODOs & Wishlist

  • Add placeholders to input fields
  • Prevent submitting empty question
  • Convert bar divs to meter
  • Add <noscript> to warn about the lack of refreshing without JS
  • Add 'enter to next line' instruction to textarea

License

MIT License

Copyright © 2017 Rijk van Zanten

polls's People

Contributors

rijkvanzanten avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.