rimraf node js

Solutions on MaxInterview for rimraf node js by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "rimraf node js"
Samia
12 Sep 2018
1// A viable alternative to `rm -rf`
2// GLOBAL INSTALL AND USE FROM CLI
3// npm install rimraf --global
4> rimraf ./node_modules
5
6// OR LOCAL PROJECT INSTALL
7// > npm install rimraf --save
8rimraf(`./${userIdFolder}/`,
9() => console.log(`DELETED ./${userIdFolder}/`));