Skip to main content
Deno 2 is finally here 🎉️
Learn more

LaLoadSpin

loading spinner cli for deno

// set frame
LaLoad.Frame = ['⣾', '⣽', '⣻', '⢿' ,'⡿','⣟','⣯','⣷'] 

//run spiner 

LaLoad.loading("Loading",100)

// stop spiner & clear in 3 sec
setInterval(()=>{
   LaLoad.end()
   console.log('Done');
   
},3000)