• Stars
    star
    353
  • Rank 116,254 (Top 3 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 1 year ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

โœจ Download templates and git repositories with pleasure!

โœจ giget

npm version npm downloads Github Actions Codecov

Download templates and git repositories with pleasure!

Features

โœ” Support popular git providers (GitHub, GitLab, Bitbucket, Sourcehut) out of the box.

โœ” Built-in and custom template registry.

โœ” Fast cloning using tarball gzip without depending on local git and tar.

โœ” Works online and offline with disk cache support.

โœ” Custom template provider support with programmatic usage.

โœ” Support extracting with a subdir.

โœ” Authorization support to download private templates

Usage (CLI)

npx giget@latest <template> [<dir>] [...options]

Arguments

  • template: Template name or a a URI describing provider, repository, subdir, and branch/ref. (See Examples)
  • dir: A relative or absolute path where to extract the template.

Options

  • --force: Clone to existing directory even if exists.
  • --offline: Do not attempt to download and use cached version.
  • --prefer-offline: Use cache if exists otherwise try to download.
  • --force-clean: โš ๏ธ Remove any existing directory or file recusively before cloning.
  • --shell: โš ๏ธ Open a new shell with current working directory in cloned dir. (Experimental).
  • --registry: URL to a custom registry. (Can be overriden with GIGET_REGISTRY environment variable).
  • --no-registry: Disable registry lookup and functionality.
  • --verbose: Show verbose debugging info.
  • --cwd: Set current working directory to resolve dirs relative to it.
  • --auth: Custom Authorization token to use for downloading template. (Can be overriden with GIGET_AUTH environment variable).

Examples

# Clone nuxt starter from giget template registry
npx giget@latest nuxt

# Clone the main branch of github.com/unjs/template to unjs-template directory
npx giget@latest gh:unjs/template

# Clone to myProject directory
npx giget@latest gh:unjs/template myProject

# Clone dev branch
npx giget@latest gh:unjs/template#dev

# Clone /test directory from main branch
npx giget@latest gh:unjs/template/test

# Clone from gitlab
npx giget@latest gitlab:unjs/template

# Clone from bitbucket
npx giget@latest bitbucket:unjs/template

# Clone from sourcehut
npx giget@latest sourcehut:pi0/unjs-template

Template Registry

Giget has a built-in HTTP registry system for resolving templates. This way you can support template name shortcuts and meta-data. Default registry is served from unjs/giget/templates.

If you want to add your template to the built-in registry, just drop a PR to add it to the ./templates directory. Slugs are added on first-come first-served basis but this might change in the future.

Custom Registry

A custom registry should provide an endpoint with dynamic path /:template.json that returns a JSON response with keys same as custom providers.

  • name: (required) Name of the template.
  • tar (required) Link to the tar download link.
  • defaultDir: (optional) Default cloning directory.
  • url: (optional) Webpage of the template.
  • subdir: (optional) Directory inside the tar file.
  • headers: (optional) Custom headers to send while downloading template.

Because of the simplicity, you can even use a GitHub repository as template registry but also you can build something more powerful by bringing your own API.

Usage (Programmatic)

Install package:

# npm
npm install giget

# yarn
yarn install giget

# pnpm
pnpm install giget

Import:

// ESM
import { downloadTemplate } from "giget";

// CommonJS
const { downloadTemplate } = require("giget");

downloadTemplate(source, options?)

Example:

const { source, dir } = await downloadTemplate("github:unjs/template");

Options:

  • source: (string) Input source in format of [provider]:repo[/subpath][#ref].
  • options: (object) Options are usually inferred from the input string. You can customize them.
    • dir: (string) Destination directory to clone to. If not provided, user-name will be used relative to the current directory.
    • provider: (string) Either github, gitlab, bitbucket or sourcehut. The default is github.
    • repo: (string) Name of repository in format of {username}/{reponame}.
    • ref: (string) Git ref (branch or commit or tag). The default value is main.
    • subdir: (string) Directory of the repo to clone from. The default value is none.
    • force: (boolean) Extract to the exisiting dir even if already exsists.
    • forceClean: (boolean) โš ๏ธ Clean ups any existing directory or file before cloning.
    • offline: (boolean) Do not attempt to download and use cached version.
    • preferOffline: (boolean) Use cache if exists otherwise try to download.
    • providers: (object) A map from provider name to custom providers. Can be used to override built-ins too.
    • registry: (string or false) Set to false to disable registry. Set to a URL string (without trailing slash) for custom registry. (Can be overriden with GIGET_REGISTRY environment variable).
    • cwd: (string) Current working directory to resolve dirs relative to it.
    • auth: (string) Custom Authorization token to use for downloading template. (Can be overriden with GIGET_AUTH environment variable).

Return value:

The return value is a promise that resolves to the resolved template.

  • dir: (string) Path to extracted dir.
  • source: (string) Normalized version of the input source without provider.
  • [other provider template keys]
    • url: (string) URL of repostiroy that can be opened in browser. Useful for logging.

Custom Providers

Using programmatic method, you can make your own custom template providers.

import type { TemplateProvider } from "giget";

const rainbow: TemplateProvider = async (input, { auth }) => {
  return {
    name: "rainbow",
    version: input,
    headers: { authorization: auth },
    url: `https://rainbow.template/?variant=${input}`,
    tar: `https://rainbow.template/dl/rainbow.${input}.tar.gz`,
  };
};

const { source, dir } = await downloadRepo("rainbow:one", {
  providers: { rainbow },
});

Custom Registry Providers

You can define additional custom registry providers using registryProvider utility and register to providers.

import { registryProvider } from "giget";

const themes = registryProvider(
  "https://raw.githubusercontent.com/unjs/giget/main/templates"
);

const { source, dir } = await downloadRepo("themes:test", {
  providers: { themes },
});

Related projects

Giget wouldn't be possible without inspiration from former projects. In comparison, giget does not depend on any local command which increases stability and performance, supports custom template providers, auth and many more features out of the box.

๐Ÿ’ป Development

  • Clone this repository
  • Enable Corepack using corepack enable (use npm i -g corepack for Node.js < 16.10)
  • Install dependencies using pnpm install
  • Run interactive tests using pnpm dev

License

Made with ๐Ÿ’›

Published under MIT License.

More Repositories

1

consola

๐Ÿจ Elegant Console Logger for Node.js and Browser
TypeScript
5,424
star
2

nitro

Next Generation Server Toolkit. Create web servers with everything you need and deploy them wherever you prefer.
TypeScript
4,941
star
3

magic-regexp

A compiled-away, type-safe, readable RegExp alternative
TypeScript
3,531
star
4

ofetch

๐Ÿ˜ฑ A better fetch API. Works on node, browser and workers.
TypeScript
3,106
star
5

h3

โšก๏ธ Minimal H(TTP) framework built for high performance and portability
TypeScript
2,910
star
6

unplugin

Unified plugin system for Vite, Rollup, Webpack, esbuild, rolldown, and more
TypeScript
2,799
star
7

magicast

๐Ÿง€ Programmatically modify JavaScript and TypeScript source codes with a simplified, elegant and familiar syntax powered by recast and babel.
TypeScript
2,112
star
8

webpackbar

Elegant ProgressBar and Profiler for Webpack 3 , 4 and 5
TypeScript
2,041
star
9

unbuild

๐Ÿ“ฆ An unified javascript build system
TypeScript
1,989
star
10

unstorage

๐Ÿ’พ Unstorage provides an async Key-Value storage API with conventional features like multi driver mounting, watching and working with metadata, dozens of built-in drivers and a tiny core.
TypeScript
1,406
star
11

fontaine

Automatic font fallback based on font metrics
TypeScript
1,388
star
12

jiti

Runtime Typescript and ESM support for Node.js
TypeScript
1,284
star
13

ipx

๐Ÿ–ผ๏ธ High performance, secure and easy-to-use image optimizer.
TypeScript
1,070
star
14

destr

๐Ÿš€ Faster, secure and convenient alternative for JSON.parse
TypeScript
894
star
15

ufo

๐Ÿ”— URL utils for humans
TypeScript
888
star
16

untun

๐Ÿš‡ Tunnel your local HTTP(s) server to the world! powered by Cloudflare Quick Tunnels.
TypeScript
853
star
17

defu

๐ŸŒŠ Assign default properties recursively
TypeScript
828
star
18

changelogen

๐Ÿ’… Beautiful Changelogs using Conventional Commits
TypeScript
745
star
19

hookable

๐Ÿช Awaitable Hooks
TypeScript
593
star
20

citty

๐ŸŒ† Elegant CLI Builder
TypeScript
533
star
21

unhead

Unhead is the any-framework document head manager built for performance and delightful developer experience.
TypeScript
501
star
22

ohash

Super fast hashing library based on murmurhash3 written in Vanilla JS
JavaScript
460
star
23

unimport

Unified utils for auto importing APIs in modules.
TypeScript
433
star
24

uqr

Generate QR Code universally, in any runtime, to ANSI, Unicode or SVG.
TypeScript
401
star
25

mlly

๐Ÿค Common ECMAScript module utils
TypeScript
398
star
26

ungh

๐Ÿ™ Unlimited access to github API
TypeScript
383
star
27

nypm

๐ŸŒˆ Unified Package Manager for Node.js and Bun
TypeScript
379
star
28

std-env

Runtime Agnostic JS utils
TypeScript
373
star
29

untyped

Generate types and markdown from a config object.
TypeScript
372
star
30

c12

โš™๏ธ Smart Configuration Loader
TypeScript
367
star
31

listhen

๐Ÿ‘‚ Elegant HTTP Listener
TypeScript
363
star
32

radix3

๐ŸŒณ Lightweight and fast router for JavaScript based on Radix Tree
TypeScript
348
star
33

unctx

๐Ÿฆ Composables in vanilla JS
TypeScript
348
star
34

pathe

๐Ÿ›ฃ๏ธ Drop-in replacement of the Node.js's path module module that ensures paths are normalized
TypeScript
332
star
35

mkdist

Lightweight file-to-file transpiler.
TypeScript
304
star
36

unpdf

๐Ÿ“„ Utilities to work with PDFs in Node.js, browser and workers
TypeScript
284
star
37

unenv

๐Ÿ•Š๏ธ Convert javaScript code to be runtime agnostic
TypeScript
282
star
38

scule

๐Ÿงต String Case Utils
TypeScript
268
star
39

knitwork

Utilities to generate JavaScript code.
TypeScript
224
star
40

rc9

Read/Write config couldn't be easier!
TypeScript
216
star
41

get-port-please

๐Ÿ”Œ Get an available open port
TypeScript
204
star
42

lmify

๐Ÿค™ Install NPM dependencies programmatically (please switch to unjs/nypm)
JavaScript
200
star
43

theme-colors

๐ŸŽจ Easily generate color shades for themes
TypeScript
185
star
44

runtime-compat

Display APIs compatibility across different JavaScript runtimes
Vue
185
star
45

perfect-debounce

Debounce promise-returning & async functions.
TypeScript
171
star
46

pkg-types

Node.js utilities and TypeScript definitions for package.json and tsconfig.json
TypeScript
170
star
47

unkit

๐Ÿ“™ UnJS standard library
TypeScript
168
star
48

crossws

๐Ÿ”Œ Cross-platform WebSocket Servers for Node.js, Deno, Bun and Cloudflare Workers.
TypeScript
167
star
49

uncrypto

Single API for Web Crypto API and Crypto Subtle working in Node.js, Browsers and other runtimes
TypeScript
154
star
50

httpxy

๐Ÿ”€ A Full-Featured HTTP and WebSocket Proxy for Node.js
TypeScript
149
star
51

serve-placeholder

โ™ก Smart placeholder for missing assets
TypeScript
144
star
52

node-fetch-native

better fetch for Node.js. Works on any JavaScript runtime!
TypeScript
141
star
53

template

๐Ÿ“‹ UnJS Project Starter Template
TypeScript
136
star
54

unwasm

๐Ÿ‡ผ WebAssembly tools for JavaScript
JavaScript
128
star
55

website

UnJS website Content and Design!
Vue
116
star
56

db0

๐Ÿ“š Lightweight SQL Connector
TypeScript
111
star
57

mongoz

๐Ÿฅญ Zero Config MongoDB Server
TypeScript
102
star
58

automd

๐Ÿค– Automated markdown maintainer
TypeScript
100
star
59

cookie-es

๐Ÿช Cookie Serializer and Deserializer
TypeScript
97
star
60

redirect-ssl

Connect/Express middleware to enforce https using is-https
TypeScript
96
star
61

jimp-compact

โœ๏ธ Lightweight version of Jimp -- An image processing library written entirely in JavaScript for Node.js
TypeScript
91
star
62

nanotar

๐Ÿ“ผ Tiny and fast tar utils for any JavaScript runtime!
TypeScript
80
star
63

undocs

Minimal Documentation theme and CLI for shared usage across UnJS projects.
Vue
76
star
64

mdbox

โฌ‡ Just simple markdown utils
JavaScript
58
star
65

items-promise

Bare minimum async methods using promises
JavaScript
51
star
66

image-meta

Detect image type and size using pure javascript.
TypeScript
51
star
67

nitro-deploys

Nitro Deployments Testing
TypeScript
45
star
68

compat-flags

๐ŸŒด Gradual feature flags.
TypeScript
45
star
69

confbox

Compact and high quality YAML, TOML, JSONC and JSON5 parsers
TypeScript
38
star
70

ezpass

Dead simple password protection middleware
TypeScript
33
star
71

workbox-cdn

Workbox Unofficial CDN and standalone NPM package.
Shell
30
star
72

rollup-plugin-node-deno

Convert NodeJS to Deno compatible code with rollup
TypeScript
29
star
73

externality

TypeScript
28
star
74

create-require

Polyfill for Node.js module.createRequire (<= v12.2.0)
JavaScript
27
star
75

requrl

Grab full URL from request.
TypeScript
26
star
76

is-https

Check if the given request is HTTPS
TypeScript
26
star
77

bundle-runner

Run webpack bundles in Node.js with optional VM sandboxing
TypeScript
21
star
78

eslint-config

๐Ÿ“– Shared ESLint config for unjs repositories
JavaScript
20
star
79

fs-memo

Easy persisted memo object for Node.js
TypeScript
18
star
80

nitro-starter

Nitro starter template
TypeScript
16
star
81

nitro-preset-starter

TypeScript
15
star
82

governance

UnJS Governance Notes
14
star
83

community

UnJS Community Notes
14
star
84

renovate-config

13
star
85

.github

Community Health Files
8
star
86

unjs.github.io

HTML
4
star
87

html-validate-es

TypeScript
4
star