node-eta
Estimated time to arrival
Last updated 10 years ago by titarenko .
MIT · Repository · Bugs · Original npm
$ cnpm install node-eta 
SYNC missed versions from official npm registry.

ETA

Estimated time to arrival.

API

ctor(count[, autoStartOrOptions])

Constructs ETA object for count of iterations. Optionally accepts additional parameter specifying whether time measurement should start immediately (autoStart), or, if it is an object, then it will be treated as options.

Options are:

  • autoStart - already described
  • numberFormatter - function, which accepts number and returns string
var Eta = require('node-eta');
var eta = new Eta(10);

start()

Starts time measurement.

iterate([anything1, anything2, ...])

Notifies estimator that one more iteration has finished. Optionally supports any number of arguments that will be passed to util.format to produce message, associated with last iteration.

format([anything1, anything2, ...])

Passes arguments to util.format and treats its invocation result as layout where following placeholders can participate:

  • {{elapsed}} - elapsed time in seconds
  • {{rate}} - current rate (iterations per second)
  • {{estimated}} - estimated time (total) in seconds
  • {{progress}} - progress (fraction of 1)
  • {{eta}} - estimated time to arrival in seconds
  • {{etah}} - formatted (for human-readability) eta
  • {{last}} - message from last iteration, if any

Returns layout filled with placeholder values.

License

MIT

Current Tags

  • 0.9.0                                ...           latest (10 years ago)

1 Versions

  • 0.9.0                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (0)
None
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org