Generate the Node.js LTS schedule
JavaScript
Switch branches/tags
Latest commit 38e21ef Apr 10, 2017 @cjihrig cjihrig v1.0.2
Permalink
Failed to load latest commit information.
bin add option to animate bars Apr 10, 2017
lib add option to animate bars Apr 10, 2017
.gitignore initial commit Apr 4, 2017
.npmignore initial commit Apr 4, 2017
.travis.yml add travis file Apr 9, 2017
LICENSE Initial commit Apr 4, 2017
README.md add option to animate bars Apr 10, 2017
lts.json initial commit Apr 4, 2017
package.json v1.0.2 Apr 10, 2017

README.md

lts

Current Version Build Status via Travis CI Dependencies

belly-button-style

A command line utility that generates the Node.js LTS schedule as a graph. Accepts JSON LTS data and a date range as inputs. Writes the LTS graph as HTML, SVG, and PNG files.

Example Usage

node bin/lts.js -s 2017-04-01 -e 2019-04-01 -h output.html -g output.svg -p output.png

Options

  • -d, --data - The path of the input JSON file. The JSON file should be of the same format as the one in Node's LTS repo. If this option is not provided, lts uses its own bundled JSON file.

  • -s, --start - The start date of the graph. Internally, this option is passed to new Date(). Optional. Defaults to the current date.

  • -e, --end - The end date of the graph. Internally, this option is passed to new Date(). Optional. Defaults to one year from the current date.

  • -h, --html - The location to write the HTML output file. Optional.

  • -g, --svg - The location to write the SVG output file. Optional.

  • -p, --png - The location to write the PNG output file. Uses svg2png under the hood. Optional.

  • -a, --animate - Animate the bars of the graph on load.