- Learn WebAssembly
- Mike Rourke
- 119字
- 2021-08-13 15:38:59
Installing rimraf
Some of the build steps defined in the Makefiles or VS Code Tasks delete files or directories. The commands required to delete a file or folder differ based on your platform and shell. To address this issue we'll use the rimraf npm package (https://www.npmjs.com/package/rimraf). Installing the package globally provides a rimraf command that performs the correct deletion operation for the operating system and shell.
To install rimraf, ensure that Node.js is installed and run the following command from a CLI:
npm install -g rimraf
To ensure that the installation was successful, run the following command:
rimraf --help
You should see usage instructions and a list of command line flags. Let's move on to the VS Code installation.
推薦閱讀
- Python for Secret Agents:Volume II
- C# Programming Cookbook
- R語言數據可視化之美:專業圖表繪制指南
- The React Workshop
- Python程序設計
- SEO實戰密碼
- 精通Python自然語言處理
- Java編程技術與項目實戰(第2版)
- Clojure Reactive Programming
- 微服務從小白到專家:Spring Cloud和Kubernetes實戰
- Java Web從入門到精通(第3版)
- SQL Server 2008 R2數據庫技術及應用(第3版)
- UML2面向對象分析與設計(第2版)
- Clojure編程樂趣
- RESTful Web API Design with Node.js(Second Edition)