KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
denoget
★ 10
Open GitHub ↗
A tool to install executable deno script.
Download README (.md)
Explore Similar Repositories
thinkfwd
:
Website for thinkfwd.co
leetcode
:
LeetCode problems solved in Go.
qnaut
:
Perform some technical analysis and help retrieve data from Vietnam's Stock Market
pystreamfs
:
A Python package for feature selection on a simulated data stream
Download_Files_Save_Demo
:
Download Files from Server and Save to Device
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
denoget
?
Download (.md)
# DEPRECATED * This command was added to `deno_std` as [`installer`](https://github.com/denoland/deno_std/tree/master/installer) and now `deno install` is available. * Please use them instead of denoget. # denoget - denoget installs executable deno script. ## Features - Install executable script into ~/.deno/denoget/bin ## Supported Environments - macOS - Linux ## Usage ```sh denoget https://denopkg.com/syumai/deno-libs/denoinit/denoinit.ts # now you can use installed command! denoinit ``` ## Requirements for installing - Deno - wget ## Installing ### 1. Install denoget denoget can be installed by using itself. ```sh deno -A https://deno.land/x/denoget/denoget.ts https://deno.land/x/denoget/denoget.ts ``` ### 2. Add `~/.deno/denoget/bin` to PATH ``` echo 'export PATH="$HOME/.deno/denoget/bin:$PATH"' >> ~/.bashrc # change this to your shell ``` ## Create Executable Script - Add shebang to top of your deno script. - This defines what permissions are needed. ```sh #!/usr/bin/env deno --allow-read --allow-write --allow-env --allow-run ``` - Host script on the web. - Install script using denoget.