Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1.  
  2. let axios = require('axios');
  3.  
  4. let arr = [];
  5.  
  6. let counter =0 ;
  7. setInterval(function() {
  8. axios.get('https://hoshen.herokuapp.com/')
  9. .then(async function(response){
  10. console.log("Done " + counter);
  11. counter ++;
  12. })
  13. },1000 * 60 * 10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement