8000 GitHub - cqb13/meteor-addon-scanner: A tool to create a list of Meteor Client addons from github.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cqb13/meteor-addon-scanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Meteor Addon Scanner

A tool to create a list of Meteor Client addons from github.

Check out the Meteor Addon List

Usage

  1. Create a .env file with a value KEY with a github API key with read access to public repositories
  2. Create a text file with full names of github repositories separated by new lines
  3. Run the following command
scanner anticope-verified.txt addons.json

Output

[
  {
    "name": "string",
    "description": "string",
    "mc_version": "string",
    "authors": ["string"],
    "features": ["string", "string"],
    "feature_count": 0,
    "verified": false,
    "repo": {
      "id": "string",
      "owner": "string",
      "name": "string",
      "archived": false,
      "fork": true,
      "stars": 0,
      "downloads": 0,
      "last_update": "string",
      "creation_date": "string"
    },
    "links": {
      "github": "string",
      "download": "string",
      "discord": "string",
      "homepage": "string",
      "icon": "string"
    }
  }
]

This tool is based on AntiCope

0