zooper
Zooper - a beautiful and minimal portfolio site made with Nuxt 3, Nuxt content module and tailwindcss
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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
설명 보기 ▼
yarn
JavaScript 및 Node.js 패키지 대체 관리자.
더 많은 정보: <https://yarnpkg.com/cli>.
yarn global add {{module_name}}
전역적으로 모듈 설치:
yarn install
`package.json` 파일에 참조된 모든 의존성을 설치 ( `install`은 선택 사항입니다):
yarn add {{module_name}}@{{version}}
모듈을 설치하고 `package.json` 파일에 대한 의존성으로 저장 (개발 전용 의존성으로 추가하려면 `--dev` 추가):
