Skip to content
View danew's full-sized avatar

Block or report danew

Report abuse

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

Report abuse

Pinned Loading

  1. steel-dev/steel-browser steel-dev/steel-browser Public

    🔥 Open Source Browser API for AI Agents & Apps. Steel Browser is a batteries-included browser sandbox that lets you automate the web without worrying about infrastructure.

    TypeScript 7.3k 943

  2. PKCE in the browser PKCE in the browser
    1
    // https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decoding#Solution_3_%E2%80%93_rewrite_the_DOMs_atob()_and_btoa()_using_JavaScript's_TypedArrays_and_UTF-8
    2
    const base64 = require('base64-js');
    3
    
                  
    4
    const urlSafe = (buffer) => {
    5
      const bytes = new Uint8Array(buffer);
  3. run-puppeteer run-puppeteer Public

    Quick Boilerplate for Puppeteer and Jest

    JavaScript 1

  4. BroadcastChannel polyfill for Jest BroadcastChannel polyfill for Jest
    1
    import { EventEmitter } from 'node:events';
    2
    
                  
    3
    const channels: Map<string, EventEmitter> = new Map();
    4
     
    5
    class MockBroadcastChannel implements BroadcastChannel {