https://github.com/joshgillies/codespace-url
Get the Github Codespace URL of a forwarded port. 🦕
https://github.com/joshgillies/codespace-url
codespaces deno github javascript typescript
Last synced: 2 months ago
JSON representation
Get the Github Codespace URL of a forwarded port. 🦕
- Host: GitHub
- URL: https://github.com/joshgillies/codespace-url
- Owner: joshgillies
- License: mit
- Created: 2020-10-28T12:22:15.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-28T13:12:18.000Z (over 5 years ago)
- Last Synced: 2026-01-03T01:33:23.416Z (6 months ago)
- Topics: codespaces, deno, github, javascript, typescript
- Language: TypeScript
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# codespace-url
Get the Github Codespace URL of a forwarded port. 🦕
Ported to Deno from https://www.npmjs.com/package/codespaces-port.
## Usage
```typescript
import { getCodespaceUrl } from "https://deno.land/x/codespace_url/mod.ts";
console.log(getCodespaceUrl(8000));
// https://64a3c66c-e6d2-47d5-acfa-f6198f6b7ea9-8000.apps.codespaces.githubusercontent.com
```
```bash
deno run --allow-env https://deno.land/x/codespace_url/mod.ts 8000
# https://64a3c66c-e6d2-47d5-acfa-f6198f6b7ea9-8000.apps.codespaces.githubusercontent.com
```