https://github.com/dyslab/deno-workers
Something about Deno workers
https://github.com/dyslab/deno-workers
deno deno-deploy
Last synced: about 2 months ago
JSON representation
Something about Deno workers
- Host: GitHub
- URL: https://github.com/dyslab/deno-workers
- Owner: dyslab
- Created: 2024-11-11T15:47:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-20T15:56:50.000Z (about 1 year ago)
- Last Synced: 2025-04-20T16:31:54.792Z (about 1 year ago)
- Topics: deno, deno-deploy
- Language: TypeScript
- Homepage:
- Size: 801 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Deno Workers Demo Compilation
[](https://deno.com/)
Each subfolder of this project connects to a deno worker demo.
## Subfolders / Worker projects
1. **[XLSX File To CSV File Demo](./xlsx2csv-demo/)**: This is a demo to upload a xlsx / csv file and then convert to a csv file for downloading. It purpose to be a basic deno snippet for xlsx / csv file middleware / processor.
2. **[Nodes Collector](./nodes-collector/)**: This is a toolkit for collecting v2ray nodes from specific datasources.
3. **[Mihomo Subscription File / Link Converter](./mihomo-subs-converter/)**: This is a toolkit for generating mihomo subscription file / link from v2ray subscription link.
## Deno / Deno Deploy Installation
```bash
# Deno
curl -fsSL https://deno.land/install.sh | sh # For Mac / Linux
# Or `irm https://deno.land/install.ps1 | iex` # For Windows (PowerShell)
deno --version # Output deno version
deno --help # For help
# Deno Deploy Classic
deno install -A jsr:@deno/deployctl --global # Install deno deploy
deployctl --version # Output deno deploy version
deployctl --help # For help
```
> **NOTE** 💬
>
> Please refer to and for more details about the deno and deno deploy.