Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dyslab/deno-workers
Something about Deno workers
https://github.com/dyslab/deno-workers
deno deno-deploy
Last synced: about 1 month 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 (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-27T16:13:25.000Z (about 1 month ago)
- Last Synced: 2024-11-27T16:44:11.226Z (about 1 month ago)
- Topics: deno, deno-deploy
- Language: TypeScript
- Homepage:
- Size: 468 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
[![Deno deploy](./assets/deno-deploy.svg)](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.