neural-amp-modeler-wasm
NAM DSP on the Web
File Explorer
- wasm.yml
- .gitignore
- tone3000-logo.svg
- nam-engine-smoke.mjs
- Brit - Guitar.wav
- Celestial - Guitar.wav
- Cream - Guitar.wav
- Decapitated - Guitar.wav
- Downtown - Bass.wav
- Drivin' - Bass.wav
- Fast Thrash - Guitar.wav
- Fear - Guitar.wav
- Frogger - Bass.wav
- Garden - Bass.wav
- Groove Thrash - Guitar.wav
- Hammer Lead - Guitar.wav
- Harmonics - Guitar.wav
- Honky - Guitar.wav
- Hotrod - Guitar.wav
- Jazz Hop - Guitar.wav
- Jazz Trot - Guitar.wav
- John - Guitar.wav
- Lunar - Guitar.wav
- Mayer - Guitar.wav
- Metalcore - Guitar.wav
- placeholder.wav
- Pluck - Guitar.wav
- Pop Punk - Guitar.wav
- Power - Guitar.wav
- Power Thrash - Guitar.wav
- Progression - Guitar.wav
- Raid - Guitar.wav
- README.md
- Rollin' - Bass.wav
- Rotary - Guitar.wav
- Slide Lead - Guitar.wav
- Smokin' - Bass.wav
- Smooth - Guitar.wav
- Stroke - Guitar.wav
- Tomb - Guitar.wav
- ampeg.wav
- celestion.wav
- eminence.wav
- mesa.wav
- plate.wav
- README.md
- spring.wav
- 5153.nam
- ac10.nam
- ampeg.nam
- deluxe-a2.nam
- deluxe.nam
- dumble.nam
- jc.nam
- jcm.nam
- README.md
- screenshot.png
- AcordianPlayer.tsx
- InputControls.tsx
- LiveTakeover.tsx
- Player.tsx
- PlayerSettings.tsx
- PlayerSkeleton.tsx
- SlimPlayer.tsx
- DeviceContent.tsx
- PermissionContent.tsx
- index.tsx
- Alert.tsx
- Button.tsx
- CircularLoader.tsx
- ClipIndicator.tsx
- Demo.tsx
- DemoPlaybar.tsx
- Dialog.tsx
- DisabledPlaybar.tsx
- Guitar.tsx
- InlineAlert.tsx
- InputMeter.tsx
- Interface.tsx
- KnobControl.tsx
- KnobInner.tsx
- LivePlaybar.tsx
- LogoSm.tsx
- MonitorButton.tsx
- Mute.tsx
- Pause.tsx
- Play.tsx
- PlayIcon.tsx
- Radio.tsx
- Select.tsx
- Skip.tsx
- Tabs.tsx
- ToggleSimple.tsx
- T3kDisabledPlayer.tsx
- T3kPlayer.tsx
- index.ts
- T3kPlayerContext.tsx
- T3kPlayerProvider.tsx
- nam-engine.d.ts
- nam-engine.js
- nam-engine.wasm
- index.ts
- nam-worklet.ts
- NamEngine.ts
- protocol.ts
- useAudioDevicesAndPermissions.ts
- useMeterAnimation.ts
- usePlayerCore.ts
- useSourceMode.ts
- index.ts
- audioNodes.ts
- browser.ts
- devices.ts
- metering.ts
- player.ts
- visualizer.ts
- css.d.ts
- index.css
- index.ts
- preview.tsx
- .gitignore
- .prettierignore
- .prettierrc
- CHANGELOG.md
- index.html
- package-lock.json
- package.json
- postcss-scope-tailwind.cjs
- postcss.config.cjs
- README.md
- rollup.config.mjs
- tailwind.config.js
- tsconfig.json
- vite.config.ts
- build.bash
- CMakeLists.txt
- nam-engine.cpp
- .clang-format
- .gitignore
- .gitmodules
- CMakeLists.txt
- core
- format.sh
- LICENSE
- README.md
# 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 add
View Details ▼
git add
Stage changed files for a commit.
git add {{path/to/file}}
Stage a file for a commit:
git add {{[-A|--all]}}
Add all files (tracked and untracked):
git add .
Add all files recursively starting from the current folder:
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
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:
git fetch
View Details ▼
git fetch
Download objects and refs from a remote repository.
git fetch
Fetch the latest changes from the default remote upstream repository (if set):
git fetch {{remote_name}}
Fetch new branches from a specific remote upstream repository:
git fetch --all
Fetch the latest changes from all remote upstream repositories:
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
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:
npm start
View Details ▼
npm start
This command is an alias of `npm run start`.
tldr npm run
View documentation for the original command:
# Project Badges
-
npm version Visit
