Skip to content
View jimmont's full-sized avatar

Organizations

@thtr

Block or report jimmont

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. hwtr Public

    Hwtr a HMAC Web Token (HWT) library

    JavaScript

  2. sourdough/starter Public

    www starter 🦕

    JavaScript 2 2

  3. lit.dev Public

    Forked from lit/lit.dev

    The Lit website

    TypeScript

  4. ES Modules ESM in Nodejs `node --imp...
    1
    /*
    2
     * support ES Modules in Nodejs, 
    3
     * running modules like we might in browsers and Deno
    4
     *
    5
     * works + tested in Nodejs 23
  5. browser ui testing, scraping, etc
    1
    // astral alternative to puppeteer and playwright, similar API
    2
    // run: deno run -A ./uitest.js
    3
    // more at https://github.com/lino-levan/astral
    4
    import { launch } from "jsr:@astral/astral";
    5
    const browser = await launch({
  6. lit templates toString: a template a...
    1
    /* convert lit templates and all their stuff and things to strings:
    2
    const things = 'things';
    3
    lit_toString(html`<b>stuff and ${ [ things ] }</b>`)
    4
    // `<b>stuff and things</b>`
    5
    */