Skip to content
Snippets Groups Projects
Commit 0bc0934b authored by Antoine Lambert's avatar Antoine Lambert
Browse files

swh-web: Improve frontend development workflow

This commit improves frontend development for swh web applications
by setting up a static assets pipeline using the module bundler tool
webpack. It enables to organize frontend development into logical
modules and then package those modules into multiple bundles that
will be loaded when required by client browsers.

This induces the following changes (see updated README):

  - node.js is now a requirement for developping swh-web

  - all static assets dependencies (javascript libraries, stylesheets,
    web fonts) are now managed and retrieved using npm.

  - all static assets will now be served through our web server

Regarding the webpack workflow put in place, it offers the following
features:

  - automatic linting of custom javascript and stylesheets in order
    to have a consistent code style and avoid bad pratices

  - the possibility to use es6 syntax and recent javascript features
    (like async/await) through the use of babel (es6 to es5 transpiler)

  - leverage the use of webpack-dev-server in development mode
    in order to automatically reload web applications in the browser
    when modifying source files

  - in production mode, minify javascript and stylesheets but also
    perform dead code elimination in order to reduce bundle sizes and
    thus optimize the amount of data to serve to the clients.

Closes T1006
parent 51f6f360
No related branches found
No related tags found
No related merge requests found
Showing
with 18189 additions and 26 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment