2 Star 3 Fork 2

Axetroy / vscode-deno

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 5.14 KB
一键复制 编辑 原始数据 按行查看 历史

English | 中文简体

Visual Studio Code Deno extension

GitHub Workflow Status Coverage Status DeepScan grade

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

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 * as foo from "./foo.js";

This will not be implemented in then extensions.

  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");
  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]));
Deno version manager integration

Investigating integration into the extension

We recommend you using dvm for the manager Deno version.

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.enabled - Enable extension. Default is false

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

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"
}

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

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

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
    $ yarn # or npm install
  3. Disable extension in Visual Studio Code if you have extension before

  4. Start debug extension

    Open Visual Studio Code, find the Run item in the sidebar and then run Launch Client task.

    Wait for Visual Studio Code debugger to open a new window

  5. Try updating Visual Studio Code and restart the debugger

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

Thanks

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

License

The MIT License

TypeScript
1
https://gitee.com/axetroy/vscode-deno.git
git@gitee.com:axetroy/vscode-deno.git
axetroy
vscode-deno
vscode-deno
master

搜索帮助