kitsonk / vscode_deno

Visual Studio Code plugin for Deno

Home Page:https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Visual Studio Code Deno extension

GitHub Workflow Status

Visual Studio Marketplace Version Visual Studio Marketplace Installs Visual Studio Marketplace Downloads Visual Studio Marketplace Rating Visual Studio Marketplace Rating (Stars)

GitHub code size in bytes GitHub repo size GitHub

Adds Deno support for the Visual Studio Code.

screenshot

Features:

Full intellisense support

Deno Support

Intelligent module import

Import

IntelliSense for remote URL imports

Import IntelliSense

Supports importing ECMAScript modules

Import

Diagnostics and quick fixes

Diagnostics

Optional use of Deno's built in formatting

Format

Client/Server model with LSP

The extension separates Client/Server with LSP

This means that complicated problems are handled on the server-side

The extension won't block your Visual Studio Code

Process

Supports `Import Maps` for Deno

import_map

External type definitions

The extension supports the following ways to load external declaration files

These are all supported by Deno

  1. Compiler hint
// @deno-types="./foo.d.ts"
import { foo } from "./foo.js";

see example

  1. Triple-slash reference directive
/// <reference types="https://raw.githubusercontent.com/date-fns/date-fns/master/typings.d.ts" />

import { format } from "https://deno.land/x/date_fns/index.js";

format(new Date(), "yyyy/MM/DD");

see example

  1. X-TypeScript-Types custom header
import { array } from "https://cdn.pika.dev/fp-ts";

const M = array.getMonoid<number>();
console.log("concat Array", M.concat([1, 2], [2, 3]));

Usage

  1. Download and enable the extension from the Visual Studio Marketplace

  2. Enable Deno for your project:

    Create a file .vscode/settings.json in your project folder:

    // .vscode/settings.json
    {
      "deno.enable": true,
    }
  3. Enjoy!

Configuration

  • deno.enable - Enable extension. Default is false

  • deno.import_map - The file paths of Import Map. Default is null

  • deno.unstable - If Deno's unstable mode is enabled. Default is false

  • deno.lint - If inline deno lint diagnostics are enabled. Because this is experimental, deno.unstable = true is required. Default is false

  • deno.import_intellisense_origins - The list of origins that import IntelliSense is enabled or disabled for. Defaults to none. More info in the import IntelliSense readme

  • deno.import_intellisense_autodiscovery - If the extension should try to auto-discover new origins with import IntelliSense support and list prompt the user. Default is true. More info in the import IntelliSense readme

We recommend that you do not set global configuration. It should be configured in .vscode/settings.json in the project directory:

// .vscode/settings.json
{
  "deno.enable": true,
  "deno.import_map": "./path/to/import_map.json",
  "deno.unstable": false,
  "deno.import_intellisense_origins": {
    "https://deno.land": true,
  },
}

This extension also provides Deno's formatting tools, settings are in .vscode/settings.json:

// .vscode/settings.json
{
  "[typescript]": {
    "editor.defaultFormatter": "denoland.vscode-deno",
  },
  "[typescriptreact]": {
    "editor.defaultFormatter": "denoland.vscode-deno",
  },
}

This extension also provides inline deno lint diagnostics. You can enable this in .vscode/settings.json:

NOTE: Since deno lint is still an experimental feature, you need to set deno.unstable = true in your VS Code settings. This function may change in the future.

// .vscode/settings.json
{
  "deno.enable": true,
  "deno.unstable": true,
  "deno.lint": true,
}

Contribute

Follow these steps to contribute, the community needs your strength.

  1. Fork project

  2. Clone onto your computer:

    $ git clone https://github.com/your_github_name/vscode_deno.git
    $ cd vscode_deno
    $ npm i
  3. Disable extension in Visual Studio Code if you have extension before

  4. Compile the extension:

    $ npm run compile # or `npm run watch` to automatically recompile on changes
  5. Start debug extension

    Open Visual Studio Code, find the Run item in the sidebar and then run Client + Server task. If you see the error Errors exist after running preLaunchTask 'undefined'., press Continue anyway.

    Wait for Visual Studio Code debugger to open a new window

  6. Try updating Visual Studio Code and restart the debugger

  7. Finally, push to your fork and send a PR

Thanks

This project was originally a fork of justjavac/vscode-deno and axetroy/vscode-deno. Thanks for their contributions.

License

The MIT License

About

Visual Studio Code plugin for Deno

https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno

License:MIT License


Languages

Language:TypeScript 99.9%Language:JavaScript 0.1%