Back to APIs list

Github API examples & templates

Use these vals as a playground to view and fork Github API examples and templates on Val Town. Run any example below or find templates that can be used as a pre-built solution.
nbbaier avatar
ardent_astronomy
@nbbaier
HTTP (deprecated)
Proof of concept for using Hono and remarkjs to create a slideshow. Slides here .
rapfl avatar
zottify
@rapfl
HTTP
@jsxImportSource https://esm.sh/preact
maxm avatar
staticChessV2
@maxm
HTTP (deprecated)
@jsxImportSource https://esm.sh/react
stevekrouse avatar
sqlite
@stevekrouse
Script
Forked from std/sqlite
janpaul123 avatar
valledrawclient
@janpaul123
Script
Forked from janpaul123/reacttldrawclient
rahulg avatar
dailyDadJoke
@rahulg
Cron
Forked from stevekrouse/dailyDadJoke
pomdtr avatar
freeformExample
@pomdtr
Script
Open Preview
std avatar
sqlite
@std
Script
SQLite - Docs β†— SQLite is a lightweight, standard database. Every Val Town account comes with its own private SQLite database that is accessible from any of your vals via std/sqlite . Val Town SQLite is powered by Turso . Usage Migrations ORMs You may find these admin viewers helpful managing your database: SQLite Explorer (built in Val Town) LibSQL Studio Limits You can store 10mb on the free plan and up to 1gb on the paid plan. Contact us if you need more space. πŸ“ Edit docs
edjw avatar
codemirror_demo
@edjw
HTTP (deprecated)
Forked from pomdtr/codemirror_demo
stevekrouse avatar
awesome
@stevekrouse
HTTP (deprecated)
Forked from pomdtr/awesome
std avatar
email
@std
Script
Email - Docs β†— Send emails with std/email . You can only send emails to yourself if you're on Val Town Free. If you're on Val Town Pro , you can email anyone. Want to receive emails instead? Create an email handler val Basic usage import { email } from "https://esm.town/v/std/email"; await email({ subject: "New Ink & Switch Post!", text: "https://www.inkandswitch.com/embark/" }); subject The email subject line. It defaults to Message from @your_username on Val Town . to , cc , and bcc By default, the to field is set to the owner of the Val Town account that calls it. If you have Val Town Pro, you can send emails to anyone via the to , cc , and bcc fields. If you don't have Val Town Pro, you can only send emails to yourself, so leave those fields blank. from The from is limited to a few options: It defaults to notifications@val.town if you don't specify it. If you do specify it, it must be of the form: your_username.valname@valtown.email . replyTo replyTo accepts a string email or an object with strings for email and name (optional). This can be useful if you are sending emails to others with Val Town Pro. import { email } from "https://esm.town/v/std/email"; await email({ to: "someone_else@example.com", from: "your_username.valname@valtown.email", replyTo: "your_email@example.com", text: "these pretzels are making me thirsty", }); Attachments You can attach files to your emails by using the attachments field. Attachments need to be Base64 encoded, which is that the btoa method is doing in this example: import { email } from "https://esm.town/v/std/email"; export const stdEmailAttachmentExample = email({ attachments: [ { content: btoa("hello attachments!"), filename: "test.txt", type: "text", disposition: "attachment", }, ], }); Here's an example sending a PDF . πŸ“ Edit docs
augustohp avatar
ghAutoAssignOnWIP
@augustohp
HTTP (deprecated)
GitHub Projects: Assign to the person who just moved the card Receives Project v2 items webhook events from GitHub. When a card is moved on a Kanban board ( Status field), if it is on a specific column, assign it to the person who moved it. Useful when I move a card from To do (no assignee) to Doing (assigns to me), for example. How to use it? Fork this val and edit it Change wipColumnName to whatever is the name of the column you are using as Doing Provide a token on ghToken with permissions: Repository access to the repository(ies) holding the issues being manipulated Organization permissions: Read access to members, Read and Write access to organization projects Read and write access to Issues and Pull Requests Create an organization webhook pointing to your new val Individual events: Project v2 items
saludes avatar
linkInBioTemplate
@saludes
HTTP (deprecated)
Forked from stevekrouse/linkInBioTemplate
tempdev avatar
anime
@tempdev
HTTP (deprecated)
Forked from tempguy/anime
ije avatar
md
@ije
Script
md A Markdown renderer written in Zig & C, compiled to WebAssymbly for val.town - https://github.com/ije/md4w import { render } from "https://esm.town/v/ije/md" render("Stay _foolish_, stay **hungry**!") // -> <p>Stay <em>foolish</em>, stay <strong>hungry</strong>!</p>
stevekrouse avatar
passkeys_demo
@stevekrouse
HTTP (deprecated)
Passkeys Demo Passkeys are pretty neat! I wanted to get a demo working in Val Town so I ported over https://github.com/maximousblk/passkeys-demo. One challenge was that the original extensively uses DenoKV store with compound keys and values. I created @stevekrouse/DenoSyntheticKV as a replacement for DenoKV. It uses SuperJSON to encode the keys and values. You can find the client-side script for the main page here: @stevekrouse/passkey_script
…
24
…
Next