-
- Downloads
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
Showing
- .gitignore 5 additions, 0 deletions.gitignore
- Makefile.local 13 additions, 5 deletionsMakefile.local
- README 0 additions, 16 deletionsREADME
- README.md 110 additions, 0 deletionsREADME.md
- debian/control 8 additions, 5 deletionsdebian/control
- package-lock.json 16733 additions, 0 deletionspackage-lock.json
- package.json 72 additions, 0 deletionspackage.json
- requirements.txt 2 additions, 0 deletionsrequirements.txt
- swh/web/assets/config/.bootstraprc 112 additions, 0 deletionsswh/web/assets/config/.bootstraprc
- swh/web/assets/config/.eslintrc 303 additions, 0 deletionsswh/web/assets/config/.eslintrc
- swh/web/assets/config/webpack-plugins/remove-source-map-url-webpack-plugin.js 49 additions, 0 deletions...g/webpack-plugins/remove-source-map-url-webpack-plugin.js
- swh/web/assets/config/webpack.config.development.js 307 additions, 0 deletionsswh/web/assets/config/webpack.config.development.js
- swh/web/assets/config/webpack.config.production.js 35 additions, 0 deletionsswh/web/assets/config/webpack.config.production.js
- swh/web/assets/src/bundles/browse/breadcrumbs.css 11 additions, 0 deletionsswh/web/assets/src/bundles/browse/breadcrumbs.css
- swh/web/assets/src/bundles/browse/browse.css 149 additions, 0 deletionsswh/web/assets/src/bundles/browse/browse.css
- swh/web/assets/src/bundles/browse/content.css 12 additions, 0 deletionsswh/web/assets/src/bundles/browse/content.css
- swh/web/assets/src/bundles/browse/index.js 10 additions, 0 deletionsswh/web/assets/src/bundles/browse/index.js
- swh/web/assets/src/bundles/browse/main-navigation.js 56 additions, 0 deletionsswh/web/assets/src/bundles/browse/main-navigation.js
- swh/web/assets/src/bundles/browse/origin-search.js 152 additions, 0 deletionsswh/web/assets/src/bundles/browse/origin-search.js
- swh/web/assets/src/bundles/browse/snapshot-navigation.css 50 additions, 0 deletionsswh/web/assets/src/bundles/browse/snapshot-navigation.css
Loading
-
Some references in the commit message have been migrated:
- T1006 is now #1006 (closed)
Please register or sign in to comment