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 (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-11T10:53:53.000Z (4 months ago)
- Last Synced: 2025-01-29T21:55:51.675Z (4 months ago)
- Topics: deno, deno-deploy
- Language: TypeScript
- Homepage:
- Size: 688 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
deno install -A jsr:@deno/deployctl --global # Install deno deploydeployctl --version # Output deno deploy version
deployctl --help # For help
```> NOTE: Please refer to and for more details about the deno and deno deploy.