Entries Tagged - "deno"
- Webmentions for Deno
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. It passes the test suite listed at webmention.rocks. You can check it out...
- Webmention 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.
- Super Simple One Time Passwords for Deno
SSTOTP is as simple as it gets for a TOTP implementation. The libary can do the following: Generate TOTP Secrets Generate TOTP Tokens Validate TOTP Tokens 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...