portfolio-template
No description available.
File Explorer
- favicon.png
- AWS_cloud_foundations_badge.webp
- AWS_cloud_practitioner_badge.webp
- citi_logo.webp
- Crayonista Poster 1.png
- DK Crayonista.ttf
- License & FAQ.pdf
- index.ts
- BILLY ARGEL PUNK BABE FONT.jpg
- PUNKBABE TRIAL.ttf
- READ ME.txt
- arrow-optimized.png
- arrow.PNG
- arrow.webp
- arrow_dark-optimized.png
- arrow_dark.PNG
- arrow_dark.webp
- drag_me_star-optimized.png
- drag_me_star.PNG
- drag_me_star.webp
- drag_me_star_dark-optimized.png
- drag_me_star_dark.PNG
- drag_me_star_dark.webp
- index.ts
- stars_1-optimized.png
- stars_1.PNG
- stars_1.webp
- stars_10-optimized.png
- stars_10.PNG
- stars_10.webp
- stars_11-optimized.png
- stars_11.PNG
- stars_11.webp
- stars_2-optimized.png
- stars_2.PNG
- stars_2.webp
- stars_3-optimized.png
- stars_3.PNG
- stars_3.webp
- stars_4-optimized.png
- stars_4.PNG
- stars_4.webp
- stars_5-optimized.png
- stars_5.PNG
- stars_5.webp
- stars_6-optimized.png
- stars_6.PNG
- stars_6.webp
- stars_7-optimized.png
- stars_7.PNG
- stars_7.webp
- stars_8-optimized.png
- stars_8.PNG
- stars_8.webp
- stars_9-optimized.png
- stars_9.PNG
- stars_9.webp
- stars_dark_1-optimized.png
- stars_dark_1.PNG
- stars_dark_1.webp
- stars_dark_10-optimized.png
- stars_dark_10.PNG
- stars_dark_10.webp
- stars_dark_11-optimized.png
- stars_dark_11.PNG
- stars_dark_11.webp
- stars_dark_2-optimized.png
- stars_dark_2.PNG
- stars_dark_2.webp
- stars_dark_3-optimized.png
- stars_dark_3.PNG
- stars_dark_3.webp
- stars_dark_4-optimized.png
- stars_dark_4.PNG
- stars_dark_4.webp
- stars_dark_5-optimized.png
- stars_dark_5.PNG
- stars_dark_5.webp
- stars_dark_6-optimized.png
- stars_dark_6.PNG
- stars_dark_6.webp
- stars_dark_7-optimized.png
- stars_dark_7.PNG
- stars_dark_7.webp
- stars_dark_8-optimized.png
- stars_dark_8.PNG
- stars_dark_8.webp
- stars_dark_9-optimized.png
- stars_dark_9.PNG
- stars_dark_9.webp
- index.ts
- sticker_1.webp
- sticker_10.webp
- sticker_11.webp
- sticker_12.webp
- sticker_13.webp
- sticker_14.webp
- sticker_15.webp
- sticker_16.webp
- sticker_2.webp
- sticker_3.webp
- sticker_4.webp
- sticker_5.webp
- sticker_6.webp
- sticker_7.webp
- sticker_8.webp
- sticker_9.webp
- AWS-Light.svg
- Bootstrap.svg
- C.svg
- CPP.svg
- CS.svg
- CSS.svg
- Dart-Light.svg
- Docker.svg
- Electron.svg
- ExpressJS-Light.svg
- Flutter-Light.svg
- Github-Light.svg
- GraphQL-Light.svg
- HTML.svg
- index.ts
- Java-Light.svg
- JavaScript.svg
- JQuery.svg
- LaTeX-Light.svg
- MaterialUI-Light.svg
- MongoDB.svg
- NodeJS-Light.svg
- Notion-Light.svg
- Npm-Light.svg
- Postman.svg
- React-Light.svg
- Redis-Light.svg
- StackOverflow-Light.svg
- TailwindCSS-Light.svg
- TensorFlow-Light.svg
- ThreeJS-Light.svg
- TypeScript.svg
- Unity-Light.svg
- Vercel-Light.svg
- Vite-Light.svg
- coming_soon.png
- divider-original.webp
- divider.PNG
- index.ts
- journal.PNG
- ProjectHeader.tsx
- ProjectLayout.tsx
- ProjectOverview.tsx
- ProjectSection.tsx
- TechnicalHighlights.tsx
- TechStack.tsx
- About.tsx
- Certifications.tsx
- Experience.tsx
- Navigation.tsx
- Projects.tsx
- Skills.tsx
- aurora.tsx
- badge.tsx
- button.tsx
- card.tsx
- domegallery.tsx
- tooltip.tsx
- AsciiMorphText.tsx
- BackButton.tsx
- DarkModeToggle.tsx
- Footer.tsx
- ImageCarousel.tsx
- TypewriterCarousel.tsx
- socialLinks.ts
- DarkModeContext.tsx
- useThemeColors.ts
- utils.ts
- Contact.tsx
- colors.ts
- figlet.d.ts
- App.css
- App.tsx
- index.css
- main.tsx
- vite-env.d.ts
- .env.example
- .gitignore
- .npmrc
- eslint.config.js
- index.html
- package-lock.json
- package.json
- postcss.config.js
- README.md
- tailwind.config.js
- tsconfig.app.json
- tsconfig.json
- tsconfig.node.json
- tsconfig.paths.json
- vite.config.ts
# 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:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
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:
