Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 2.11 KB

ReadMe.md

File metadata and controls

68 lines (48 loc) · 2.11 KB

Deno quick start

The simplest Deno project template for beginners.

CI & CD

Open in GitHub Codespaces Open in Gitpod

Use this template project in Cloud

  1. Click the Use this template button on the top of this GitHub repository's home page, then create your own repository in your account/organization namespace

  2. Click the Open in GitHub codespaces button on the top of ReadMe file, then an online VS Code development environment will be started immediately

Install minimal All-in-One Development Environment in your computer

Installation

Windows

winget install DenoLand.Deno Microsoft.VisualStudioCode

code --install-extension justjavac.vscode-deno-extensionpack
code --install-extension redhat.vscode-yaml
code --install-extension ms-azuretools.vscode-docker
code --install-extension GitHub.copilot

Linux

curl -fsSL https://deno.land/install.sh | sh
flatpak install com.visualstudio.code

code --install-extension justjavac.vscode-deno-extensionpack
code --install-extension redhat.vscode-yaml
code --install-extension ms-azuretools.vscode-docker
code --install-extension GitHub.copilot

Mac OS

brew install deno
brew install --cask visual-studio-code

code --install-extension justjavac.vscode-deno-extensionpack
code --install-extension redhat.vscode-yaml
code --install-extension ms-azuretools.vscode-docker
code --install-extension GitHub.copilot

Initialization

cd ~/Desktop
git clone https://github.com/idea2app/Deno-quick-start
cd Deno-quick-start
deno --allow-all source/index.ts