Frontend development - nimrody/knowledgebase GitHub Wiki

Typescript

CSS stylesheets

Charts

Themes

CSS

Service workers (serviceworkers)

Boilerplate / examples

Templates

Reactive Extensions

CSS

React alternatives

Bootstrap

React

Vue.js

D3

Other

React

React forms

Visualisation

Themes

Tools

  • Chrome devtools tips

    • Especially ctrl-shift-p and ctrl-o
  • Generate PDF with chrome chromium-browser --headless --disable-gpu --print-to-pdf=output_file_name.pdf file:///path/to/your/html

  • Webpack tutorial

  • Webpack book

  • Installing npm modules into home directory

    $ cat ~/.npmrc prefix=/home/nimrody/.npm-packages

    $ cat ~/.profile export NPM_PACKAGES="$HOME/.npm-packages" export PATH="$NPM_PACKAGES/bin:$PATH" export NODE_PATH="$NPM_PACKAGES/lib/node_modules:$NODE_PATH"