March 2018
Intermediate to advanced
364 pages
8h 21m
English
Maybe you have noticed that we are using import statements used for ES6 modules? There are many ways to make that work, but we choose a modern option, namely, utilizing webpack. We will need to do the following to set up webpack successfully:
We can install the needed libraries by typing:
npm install webpack webpack-cli --save-dev
Thereafter, we need to create our config file, webpack.config.js, like so:
// dataflow/webpack.config.jsmodule.exports ...
Read now
Unlock full access