git0 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/gg.js +1 -0
  2. package/package.json +1 -1
  3. package/readme.md +7 -13
package/gg.js CHANGED
@@ -19,6 +19,7 @@ const githubHelpUrl = 'https://github.com/settings/personal-access-tokens/new'
19
19
  grab('', {
20
20
  setDefaults: true,
21
21
  debug: false,
22
+ timeout: 5000,
22
23
  onError: (error) => {
23
24
  if (error.includes('403')) {
24
25
  log(chalk.red('Rate limit exceeded. Please set env var GITHUB_TOKEN. Help:\n' + githubHelpUrl));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git0",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "A CLI manager for downloading GitHub repos.",
5
5
  "author": "vtempest",
6
6
  "license": "MIT",
package/readme.md CHANGED
@@ -26,20 +26,10 @@
26
26
  </p>
27
27
 
28
28
 
29
- # Git0: GitHub Zero-Step Repo Downloader
29
+ # Git0: Git Repo in Zero-Steps
30
30
 
31
- A fast and smart CLI tool to search, download source & releases for your system, and instantly set up GitHub repositories with automatic dependency installation and IDE integration.
32
-
33
-
34
- ## 🚀 Installation
35
-
36
- ```bash
37
- npm install -g git0
38
- ```
39
-
40
- ```bash
41
- bun install -g git0
42
- ```
31
+ A fast and smart CLI tool to search, download source & releases for your system, and
32
+ instantly set up GitHub repositories with automatic dependency installation and IDE integration.
43
33
 
44
34
  ![livepreview](https://i.imgur.com/Io3ukRC.gif)
45
35
  ![preview](https://i.imgur.com/K22NiBq.png)
@@ -61,6 +51,10 @@ bun install -g git0
61
51
 
62
52
  ### Search and Download
63
53
  ```bash
54
+ # install in bun or node
55
+ npm i -g git0
56
+ bun i -g git0
57
+
64
58
  # Search for repositories by name
65
59
  gg react starter
66
60