https://github.com/alertbox/feature-setup-deno
Set up your @devcontainers with a specific version of Deno
https://github.com/alertbox/feature-setup-deno
deno devcontainer-features developer-tools
Last synced: 6 months ago
JSON representation
Set up your @devcontainers with a specific version of Deno
- Host: GitHub
- URL: https://github.com/alertbox/feature-setup-deno
- Owner: alertbox
- License: mit
- Created: 2025-06-02T05:01:12.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-06-03T02:36:22.000Z (8 months ago)
- Last Synced: 2025-06-10T14:14:36.677Z (8 months ago)
- Topics: deno, devcontainer-features, developer-tools
- Language: Shell
- Homepage: https://deno.com
- Size: 18.6 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Setup Deno in Dev Containers
Download, install, and setup specific version of [Deno](https://deno.com/) in your Dev Container.
## Quick Start
[](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/alertbox/try-docsify)
You can also add this feature to your `devcontainer.json` file.
```json filename="devcontainer.json"
"features": {
"ghcr.io/alertbox/denoland/deno:1": {}
}
```
### Installing packages globally
You can also install packages globally, using the `packages` option. Typically this is used for installing CLI tools and the like.
```json filename="devcontainer.json"
"features": {
"ghcr:io/alertbox/denoland/deno:1": {
"packages": "jsr:@std/http/file-server"
}
}
```
### Node.js not needed
You don't need to use the feature [node](https://github.com/devcontainers/features/tree/main/src/node#readme) in most cases.
## Options
See [src/deno](./src/deno/README.md) folder to learn more about options.
## Contributing
The official repo to contribute would be [@denoland/deno](https://github.com/denoland/deno?tab=readme-ov-file#readme).
Have a suggestion or a bug fix? Just open a pull request or an issue. Include clear and simple instructions possible.
## License
Copyright (c) The Alertbox, Inc. (@alertbox). All rights reserved.
The source code is license under the [MIT license](#MIT-1-ov-file).