https://github.com/idea2app/deno-quick-start
The simplest Deno project template for beginners.
https://github.com/idea2app/deno-quick-start
deno scaffold
Last synced: 4 months ago
JSON representation
The simplest Deno project template for beginners.
- Host: GitHub
- URL: https://github.com/idea2app/deno-quick-start
- Owner: idea2app
- Created: 2025-02-14T15:36:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-14T16:17:43.000Z (over 1 year ago)
- Last Synced: 2025-04-09T23:44:02.647Z (about 1 year ago)
- Topics: deno, scaffold
- Language: Dockerfile
- Homepage:
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# Deno quick start
The simplest [Deno][1] project template for beginners.
[][2]
[][3]
[][4]
## Use this template project in Cloud
1. Click the **[Use this template][5] 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][3] 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
```powershell
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
```bash
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
```bash
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
```shell
cd ~/Desktop
git clone https://github.com/idea2app/Deno-quick-start
cd Deno-quick-start
deno --allow-all source/index.ts
```
[1]: https://deno.com/
[2]: https://github.com/idea2app/Deno-quick-start/actions/workflows/main.yml
[3]: https://codespaces.new/idea2app/Deno-quick-start
[4]: https://gitpod.io/?autostart=true#https://github.com/idea2app/Deno-quick-start
[5]: https://github.com/new?template_name=Deno-quick-start&template_owner=idea2app