
How to resolve the error when you debug or build the project? Please look and do as the follows
- Open your File Folder:iview-project-3.0
- Check two files : webpack.dev.config.js, webpack.prod.config.js
- Open the files with vscode ,or nodepad
- please attention the line 11, as the follows:
_fs.write(fd, buf, 0, buf.length, 0, function (err, written, buffer){});_
Comment out the code,Add new code as the follows
fs.write(fd, buf, function(err, written, buffer) {});

- Save the files
- Now, you can try to npm run dev or npm run build