| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
See minor change suggestions inside
Sorry, something went wrong.
| const spiner = new Spinner('Retrieving your Project, please wait...'); | ||
| spiner.start(); | ||
|
|
||
| github.getRepo(gitHubMeta, spiner).then(function(repo) { | ||
| console.log("Got Project: ", gitHubMeta.repo) | ||
| spiner.stop(); |
There was a problem hiding this comment.
| const spiner = new Spinner('Retrieving your Project, please wait...'); | |
| spiner.start(); | |
| github.getRepo(gitHubMeta, spiner).then(function(repo) { | |
| console.log("Got Project: ", gitHubMeta.repo) | |
| spiner.stop(); | |
| const spinner = new Spinner('Retrieving your Project, please wait...'); | |
| spinner.start(); | |
| github.getRepo(gitHubMeta, spinner).then(function(repo) { | |
| console.log("Got Project: ", gitHubMeta.repo) | |
| spinner.stop(); |
Sorry, something went wrong.
| var download = require("download"); | ||
| var request = require('request'); | ||
|
|
||
| var getRepo = (inputs, spiner) => { |
There was a problem hiding this comment.
| var getRepo = (inputs, spiner) => { | |
| var getRepo = (inputs, spinner) => { |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Includes a javascript utility which enables a developer to GET a private GitHub Repository from an Organization over HTTPS (no GIT) using the CLI.
@azizshamim