fake-repo-ogp-image
No description available.
File Explorer
- connpass-pickup.png
- hono.png
- mixi2-js.png
- file.svg
- github-colors.json
- globe.svg
- next.svg
- vercel.svg
- window.svg
- OgImage.tsx
- route.tsx
- route.ts
- route.ts
- page.tsx
- favicon.ico
- globals.css
- layout.tsx
- page.tsx
- AvatarSection.tsx
- AvatarUploader.tsx
- Editor.tsx
- Field.tsx
- ImportBar.tsx
- LanguageBar.tsx
- LanguagePickerModal.tsx
- StatsFields.tsx
- Octicons.tsx
- AvatarVisual.tsx
- LanguageStripe.tsx
- OgpCard.tsx
- Preview.tsx
- StatItem.tsx
- stats.tsx
- DownloadButton.tsx
- ShareButton.tsx
- Arimo-Bold.ttf
- Arimo-Regular.ttf
- avatar.ts
- format.ts
- github.ts
- identicon.ts
- image.ts
- languages.ts
- og-fonts.ts
- share.ts
- site.ts
- theme.ts
- types.ts
- useGithubAvatar.ts
- .gitignore
- .next.md
- AGENTS.md
- CLAUDE.md
- eslint.config.mjs
- next.config.ts
- package.json
- pnpm-lock.yaml
- pnpm-workspace.yaml
- postcss.config.mjs
- README.md
- tsconfig.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bun
View Details ▼
bun
JavaScript runtime and toolkit.
Includes a bundler, a test runner, and a package manager.
bun init
Create a new Bun project in the current directory:
bun run {{path/to/file|script_name}}
Run a JavaScript file or a `package.json` script:
bun test
Run unit tests:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
pnpm
View Details ▼
pnpm
Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.
pnpm init
Create a `package.json` file:
pnpm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
pnpm add {{module_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
yarn
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
