1.2.1 • Published 3 years ago

releasetrain-forecast v1.2.1

Weekly downloads
38
License
MIT
Repository
github
Last release
3 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

3 years ago

1.2.0

3 years ago

1.1.10

3 years ago

1.1.14

3 years ago

1.1.13

3 years ago

1.1.9

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago