docs: add GitHub Copilot instructions (#32492)
- Adds
.github/copilot-instructions.mdto guide GitHub Copilot with project-specific context- Documents network access requirements for
tools/format.jsandtools/lint.js(jsr.io, dprint.dev, GitHub)- Includes PR title linting rules, codebase architecture, build/test/lint commands, and development workflows
Co-authored-by: Claude Opus 4.6 noreply@anthropic.com
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
Deno
Deno (/ˈdiːnoʊ/, pronounced
dee-no) is a JavaScript, TypeScript, and WebAssembly runtime with secure defaults and a great developer experience. It’s built on V8, Rust, and Tokio.Learn more about the Deno runtime in the documentation.
Installation
Install the Deno runtime on your system using one of the commands below. Note that there are a number of ways to install Deno - a comprehensive list of installation options can be found here.
Shell (Mac, Linux):
PowerShell (Windows):
Homebrew (Mac):
Chocolatey (Windows):
WinGet (Windows):
Scoop (Windows):
Build and install from source
Complete instructions for building Deno from source can be found here.
Your first Deno program
Deno can be used for many different applications, but is most commonly used to build web servers. Create a file called
server.tsand include the following TypeScript code:Run your server with the following command:
This should start a local web server on http://localhost:8000.
Learn more about writing and running Deno programs in the docs.
Additional resources
Contributing
We appreciate your help! To contribute, please read our contributing instructions.