Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

made-in-generator

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

made-in-generator

Geneator of made-in-xxx

  • 0.2.5
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Made-In-Generator

The repository is inspired by @IonicaBizau/made-in.

It supports getting developers and repositories on github and making documantation.

Usage

$ npm install --save-dev made-in-generator

Functions

Searching Developers

const { MadeIn } = require('made-in-generator');
const token = ''; // github auth token
const locations = ['Japan', 'Tokyo']; // It is used for seaching location, you should use a country and cities
return new MadeIn({ token })
  .getDevelopers(locations);  // It creates `data/developers.json`

Searching Repositories

const { MadeIn } = require('made-in-generator');
const token = ''; // github auth token
const developers = require('./data/developers.json');
return new MadeIn({ token })
  .getRepositories(developers); // It creates `data/repositories.json`

Making documantations

$ npm init

The package.json has to have homepage. It will be used for documentation links.

const { makeDocs } = require('made-in-generator');
const repositories = require('./data/repositories.json');
makeDocs(repositories);

FAQs

Package last updated on 24 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc