1.2.1 • Published 5 years ago

releasetrain-forecast v1.2.1

Weekly downloads
38
License
MIT
Repository
github
Last release
5 years ago

releasetrain-forecast

Forecast software release version date.

const rf = require('releasetrain-forecast');

rf.nextReleaseDate("vite").then((data) => {console.log(data)});
// Sun, 31 Jan 2021 23:00:00 GMT

rf.nextReleaseDate("vite-2").then((data) => {console.log(data)});
// Forecast not possible. Component unknown :-(

rf.nextReleaseDate("mongo").then((data) => {console.log(data)});
// Forecast not possible. Not sufficient data :-(

rf.isCoincideReleaseDate(["vite","mongo","next.js"])
	.then((data) => {
		console.log(data)
	});
/*
{
  isCoincideReleaseDate: true,
  coincideReleaseDate: 'Wed, 13 Jan 2021 09:00:00 GMT',
  components: [ 'vite', 'next.js' ]
}
*/

rf.isCoincideReleaseDate(["mongo","express","angular","node"])
	.then((data) => {
		console.log(data)
	});
/*
{
  isCoincideReleaseDate: false,
  coincideReleaseDate: null,
  components: []
}
*/
1.2.1

5 years ago

1.2.0

5 years ago

1.1.10

5 years ago

1.1.14

5 years ago

1.1.13

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago