shopify-voice-shopper
No description available.
File Explorer
- app-icon.png
- frontend-screenshot.jpeg
- template-graphic.svg
- build-and-test.yaml
- sync-to-production.yaml
- route.ts
- favicon.ico
- globals.css
- layout.tsx
- page.tsx
- CloseIcon.tsx
- NoAgentNotification.tsx
- TranscriptionView.tsx
- index.html
- requestPermission.js
- background.js
- icon.png
- manifest.json
- package-lock.json
- popup.html
- popup.js
- useCombinedTranscriptions.ts
- useLocalMicTrack.ts
- .env.example
- .eslintrc.json
- .gitignore
- .prettierignore
- .prettierrc
- manifest.json
- next.config.mjs
- package-lock.json
- package.json
- pnpm-lock.yaml
- postcss.config.mjs
- README.md
- tailwind.config.ts
- tsconfig.json
- .gitignore
- README.md
- requirements.txt
- shopify.py
# 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.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
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`:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
