This is a straightforward webmention sending and endpoint discovery implementation. It has a single external dependency, which is Deno DOM. It uses this library to find the webmention endpoint within a page.
Entries Tagged - "deno"
- Generate TOTP Secrets
- Generate TOTP Tokens
- Validate TOTP Tokens
Jul 26 2023Webmentions for Deno
Jul 06 2023Webmention Deno!
Wrote a webmention library for Deno, it was good practice getting it to pass the test suite at webmention.rocks.
https://deno.land/x/[email protected]
The next step is writing out a CLI tool that can completely replace (the now defunct) webmention.app.
Mar 30 2023Super Simple One Time Passwords for Deno
SSTOTP is as simple as it gets for a TOTP implementation. The libary can do the following:
Tokens are valid for 30 seconds, and a step tolerance of two is implemented to account for clock skew.
It has a single standard library dependency, which is base32.
At this time, it is considered feature complete. Generating otpauth:// QR codes is left as an exercise to the reader.