Ultimate Django Part 3 - Failed to install regenerator-runtime

Hi There,

When running npm start for the File Upload client module, I get a whole list of errors ending with:

1 | import ‘regenerator-runtime/runtime.js’;
| ^
2 | import axios from ‘axios’;
3 |
4 | const progressBar = document.querySelector(‘#progressBar’);

Any ideas what this means?

Found the solution.
I had to run npm install axios and npm install --save regenerator-runtime in terminal, outside of vscode in order to get it going. Running those commands inside the vscode terminal did not help.