Dexter-Morgan-Portfolio
No description available.
File Explorer
- apple-icon.png
- favicon.ico
- globals.css
- icon1.png
- icon2.png
- layout.tsx
- page.tsx
- provider.tsx
- config.json
- App.js
- index.css
- DAY_018_1.gif
- DAY_018_2.gif
- favicon.ico
- index_dwn.gif
- logo1.png
- miku.gif
- CardSection.module.css
- CardSection.tsx
- global.css
- 3d-pin.tsx
- background-gradient-animation.tsx
- bento-grid.tsx
- canvas-reveal-effect.tsx
- floating-nav.tsx
- infinite-moving-cards.tsx
- magic-button.tsx
- moving-borders.tsx
- spotlight.tsx
- text-generate-effect.tsx
- footer.tsx
- grid.tsx
- recent-projects.tsx
- index.ts
- confetti.json
- index.ts
- utils.ts
- band.png
- card.glb
- port.png
- porto.png
- portofolio.png
- portofolioo.png
- helvetica.json
- helveticaneue.woff2
- Roboto_Regular.json
- image1.png
- img10.jpg
- img15.gif
- img16.gif
- img17.gif
- img18.gif
- app.svg
- appName.svg
- arrow.svg
- b1.svg
- b4.svg
- b5.svg
- behance.svg
- bg.png
- blender.svg
- brandtypescript.svg
- c.svg
- cloud.svg
- cloudName.svg
- cof.png
- dock.svg
- dockerName.svg
- exp1.svg
- exp2.svg
- exp3.svg
- exp4.svg
- fls.png
- fm.svg
- footer-grid.svg
- gcc.png
- git.svg
- graphic.png
- grid.svg
- gsap.svg
- host.svg
- hostName.svg
- illustrator.svg
- insta.svg
- java.svg
- kotlin.svg
- landing.png
- laravel.svg
- link.svg
- lulus.png
- mysql.svg
- next.svg
- nextjs.svg
- p1.svg
- p2.svg
- p3.svg
- p4.svg
- photoshop.svg
- php.svg
- profile.svg
- re.svg
- s.svg
- stream.svg
- streamName.svg
- tail.svg
- tailwind.svg
- tanyaai.png
- three.svg
- ts.svg
- twit.svg
- typescript.svg
- bun.lockb
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- global.d.ts
- LICENSE
- next-env.d.ts
- next.config.mjs
- package-lock.json
- package.json
- postcss.config.mjs
- README.md
- SECURITY.md
- tailwind.config.ts
- tailwind.d.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.
bun install
View Details ▼
bun install
Install JavaScript dependencies for a project from `package.json`.
bun {{[i|install]}}
Install all dependencies listed in `package.json`:
bun {{[i|install]}} {{package_name}}@{{version}}
Install a single package (this is an alias for `bun add`):
bun {{[i|install]}} {{[-g|--global]}} {{package_name}}
Install a package globally:
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:
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):
lib
View Details ▼
lib
The Microsoft Library Manager for creating and managing static libraries of object files.
lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}
Create a static library from object files:
lib /LIST {{path\to\library.lib}}
List the contents of a library:
lib {{path\to\library.lib}} {{path\to\file.obj}}
Add an object file to an existing library:
