UNPKG

391 BPlain TextView Raw
1#!/usr/bin/env node
2import { PUPPET_DEPENDENCIES } from '../src/puppet-config'
3
4async function main () {
5 const puppetNameList = Object.keys(PUPPET_DEPENDENCIES)
6 const publicNameList = puppetNameList.filter(name => /^[^@]/.test(name))
7 const urlPath = publicNameList.join('-vs-')
8 const url = 'https://www.npmtrends.com/' + urlPath
9 console.info(url)
10}
11
12main()
13 .catch(console.error)