Skip to content
View danew's full-sized avatar

Block or report danew

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. steel-dev/steel-browser Public

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

    TypeScript 4.1k 257

  2. 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 Public

    Quick Boilerplate for Puppeteer and Jest

    JavaScript 1

  4. 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 {