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

jwz

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jwz

Utils

  • 1.2.10
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
50
increased by1150%
Maintainers
1
Weekly downloads
 
Created
Source

Function

GitHub

  • buildGitHubRepo
  • inviteGitHubCollaborators
buildGitHubRepo
  • usage
    import { buildGitHubRepo } from 'jwz';
    
    /*
        @param org = String
        @param repo = String
        @param vis = String
        @param token = String
    */
    
    const org = 'your-org-name';
    var repo = 'your-repo-name';
    const token = 'your-token';
    var vis = 'public';
    
    const res = await buildGitHubRepo(org, repo, vis, token);
    
    console.log(res);
    

inviteGitHubCollaborators

  • usage
    import { inviteGitHubCollaborators } from "jwz";
    
    /*
        @param org = String
        @param repo = String
        @param collaborators = array
        @param token = String
    */
    
    const org = 'your-org-name';
    var repo = 'your-repo-name';
    var collaborators = ['collaboratorA', 'collaboratorB']
    const token = 'your-token';
    
    inviteGitHubCollaborators(org, repo, collaborators, token);
    
  • note
    • when code is running it will have output of result

Keywords

FAQs

Package last updated on 16 Dec 2023

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