UNPKG

compound-ex4

Version:

Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)

16 lines (11 loc) 290 B
'use strict'; var setupThrobber = require('../throbber'); var throbber = setupThrobber(function (str) { process.stdout.write(str); }, 200); process.stdout.write('Throbbing for 3 seconds here -> '); throbber.start(); setTimeout(function () { console.log(); throbber.stop(); }, 3000);