deno_version_info
Get version info of Deno from https://deno.land/x.
Usage
import versionInfo from 'https://deno.land/x/latest_version/mod.ts';
import type { VersionInfo } from 'https://deno.land/x/latest_version/mod.ts';
await versionInfo('std');
output:
{
latest: "0.66.0",
versions: [
"0.66.0", "0.65.0", "0.64.0",
"0.63.0", "0.62.0", "0.61.0",
"0.60.0", "0.59.0", "0.58.0",
"0.57.0", "0.56.0", "0.55.0",
"0.54.0", "0.53.0", "0.52.0",
"0.51.0", "0.50.0", "0.42.0",
"0.41.0", "0.40.0", "0.39.0",
"0.38.0", "0.37.0", "0.36.0",
"0.35.0", "0.34.0"
]
}
Example
deno run --allow-net https://deno.land/x/latest_version/example.ts
License
deno_version_info is released under the MIT License. See the bundled LICENSE file for details.