mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
15 lines
320 B
Python
15 lines
320 B
Python
# MIT licensed
|
|
# Copyright (c) 2013-2017 lilydjwg <lilydjwg@gmail.com>, et al.
|
|
|
|
from .simple_json import simple_json
|
|
|
|
NPM_URL = 'https://registry.npmjs.org/%s'
|
|
|
|
def _version_from_json(data):
|
|
return data['dist-tags']['latest']
|
|
|
|
get_version, get_cacheable_conf = simple_json(
|
|
NPM_URL,
|
|
'npm',
|
|
_version_from_json,
|
|
)
|