vitale
TypeScript notebook for developers
File Explorer
- devcontainer.json
- npm-publish.yml
- vsix-ci.yml
- vsix-release.yml
- extensions.json
- launch.json
- settings.json
- tasks.json
- CodiconDebugPause.svg
- CodiconDebugStart.svg
- CodiconOpenPreview.svg
- CodiconOutput.svg
- hero.png
- settings.json
- fetch_latest_vsix.mjs
- azure-ai.vnb
- calendar.vnb
- mapStream.ts
- octokit.vnb
- package.json
- react.vnb
- regex.vnb
- streamAzureAIResponse.ts
- tsconfig.json
- vite.config.ts
- cells.ts
- cli.ts
- client.ts
- domain.ts
- executeCell.ts
- hmr.ts
- index.ts
- rewrite.test.ts
- rewrite.ts
- rpc-types.ts
- rpc.ts
- runner.ts
- runtime.ts
- server.ts
- types.ts
- package.json
- tsconfig.json
- tsup.config.ts
- index.ts
- README.md
- index.ts
- linkify.test.ts
- notebookRenderer.test.ts
- stackTraceHelper.test.ts
- ansi.ts
- color.ts
- colorMap.ts
- htmlHelper.ts
- index.ts
- linkify.ts
- rendererTypes.ts
- stackTraceHelper.ts
- textHelper.ts
- README.md
- cellOutputPanes.ts
- cellOutputWebview.ts
- cellStatusBarItemProvider.ts
- controller.ts
- extension.ts
- handleDidChangeNotebookDocument.ts
- handleDidChangeNotebookEditorSelection.ts
- handleDidChangeTextDocument.ts
- jsonRenderer.tsx
- log.ts
- pauseCell.ts
- serializer.ts
- showCellOutputChannel.ts
- vitaleRenderer.tsx
- .eslintrc.json
- .vscode-test.mjs
- .vscodeignore
- package.json
- tsconfig.json
- tsup.config.ts
- vsc-extension-quickstart.md
- .gitignore
- .npmrc
- LICENSE
- package.json
- pnpm-lock.yaml
- pnpm-workspace.yaml
- README.md
- vitest.workspace.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:
Hello
View Details ▼
Hello
Print "Hello, world!", "hello, world", or a customizable text.
hello
Print "Hello, world!":
hello {{[-t|--traditional]}}
Print "hello, world", the traditional type:
hello {{[-g|--greeting]}} "{{greeting_text}}"
Print a text message:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies 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`:
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`:
vite
View Details ▼
vite
Create a Vite project.
Used to build JavaScript projects.
Available templates: vanilla, vanilla-ts, vue, vue-ts, react, react-ts, react-swc, react-swc-ts, preact, preact-ts, lit, lit-ts, svelte, svelte-ts.
npm create vite@latest my-react-app --template react-ts
Setup using `npm` 6.x:
npm create vite@latest my-react-app -- --template react-ts
Setup using `npm` 7+, extra double-dash is needed:
yarn create vite my-react-app --template react-ts
Setup using `yarn`:
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):
