zooper
Zooper - a beautiful and minimal portfolio site made with Nuxt 3, Nuxt content module and tailwindcss
File Explorer
- settings.json
- ArticleCard.vue
- Footer.vue
- Header.vue
- Navbar.vue
- ProjectCard.vue
- ThemeToggle.vue
- UsesHeader.vue
- UsesItem.vue
- AnimatedCounter.vue
- CodeView.vue
- Credit.vue
- Encryption.vue
- HackerButton.vue
- LabCard.vue
- Rocket.vue
- Shapes.vue
- TextRotator.vue
- Divider.vue
- FeaturedArticles.vue
- FeaturedProjects.vue
- Intro.vue
- Newsletter.vue
- SocialLinks.vue
- building-your-first-api-with-expressjs-a-beginners-guide.md
- how-to-convert-a-svg-to-png-using-canvas.md
- 1.text-rotator.md
- 2.hacker-button.md
- 3.animated-number-counter.md
- 4.shapes-with-tailwindcss.md
- 5.rocket.md
- 6.encryption.md
- 1.feedbackjar.json
- 10.fluenticons.json
- 11.appydev.json
- 12.gitstars.json
- 13.tvflix.json
- 2.feedful.json
- 3.1.hawa.json
- 3.123.sketch-to-ui.json
- 3.2.pocketbase-nuxt.json
- 3.formdata.json
- 4.simpleonlinetools.json
- 5.imbox.json
- 6.bring-back-twitter.json
- 6.onelink.json
- 7.logspot.json
- 8.iconbuddy.json
- 9.postperfect.json
- apple-airpods-3.json
- apple-iphone-12.json
- apple-watch-series-7.json
- bear.json
- cleanshot.json
- daily-objects-turf-desk-mat.json
- dell-nero-dock.json
- fake-plants.json
- featherlite-helix-chair.json
- gifski.json
- httpie.json
- ikea-headphone-stand.json
- jbl-csum-microphone.json
- keychron-k2.json
- krisp.json
- lenovo-monitor.json
- logitech-mx-keys.json
- logitech-mx-master-3s.json
- macbook.json
- miyoo-mini.json
- monitorcontrol.json
- purple-ark-sit-stand-desk.json
- raycast.json
- reminders-menubar.json
- sony-playstation-4.json
- sony-wh-1000xm4.json
- Tableplus.json
- texts.json
- vscode.json
- zed.json
- [slug].vue
- index.vue
- bookmarks.vue
- index.vue
- lab.vue
- projects.vue
- whats-in-my-bag.vue
- cloudflare-workers-settings.jpg
- how-to-use-two-github-accounts-on-a-macbook-the-right-way.png
- indie-drake.jpeg
- monitoring-a–url-and-getting-alerted-on-telegram-using-cloudflare-workers.png
- site-monitoring-flow.jpg
- telegram-chat-id.jpg
- the-bot-alert.jpg
- appydev.png
- feedbackjar.png
- feedful.png
- fluenticons.png
- formdata.png
- gitstars.png
- hawa.png
- icon-black.svg
- iconbuddy.png
- imbox.png
- logspot.png
- onelink.png
- pb-nuxt.png
- postperfect.png
- simpleonline-tools.png
- sketch-to-ui.png
- tvflix.png
- twitter.svg
- avatar.png
- favicon.ico
- preview.jpg
- .gitignore
- .npmrc
- .prettierrc
- app.config.ts
- app.vue
- nuxt.config.ts
- package.json
- README.md
- tailwind.config.ts
- tsconfig.json
- yarn.lock
# 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.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
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):
