Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Core: Replace express with connect #27045

Draft
wants to merge 19 commits into
base: next
Choose a base branch
from

Commits on May 6, 2024

  1. feat: migrate from express to connect

    Migrates away from express, instead using connect and the underlying
    node server directly.
    
    Both express and connect support the same middleware structure, which
    means most middleware packages work for both and have remained the same
    in this change.
    
    A few notes:
    
    - Express' router has been replaced by basic connect mount points
    (though the two are not equivalent exactly)
    - Express static has been replaced by sirv
    
    This trims a large sub-tree of dependencies from our packages which
    express was pulling in. We in fact use very little of the functionality
    express gives us, only really making use of the connect-style API
    anyway.
    43081j committed May 6, 2024
    Configuration menu
    Copy the full SHA
    a725eda View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. fix

    ndelangen committed May 7, 2024
    Configuration menu
    Copy the full SHA
    9b0b42a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c2261fd View commit details
    Browse the repository at this point in the history
  3. fix linting

    ndelangen committed May 7, 2024
    Configuration menu
    Copy the full SHA
    8129229 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    644582f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f1685e7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ffa4f0b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b92d83b View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    de5724b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    480b07b View commit details
    Browse the repository at this point in the history

Commits on May 18, 2024

  1. Configuration menu
    Copy the full SHA
    66d27f8 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Configuration menu
    Copy the full SHA
    c515678 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Configuration menu
    Copy the full SHA
    7832789 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2940276 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. Configuration menu
    Copy the full SHA
    e48040d View commit details
    Browse the repository at this point in the history
  2. remove express types

    ndelangen committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    88fbc1b View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    97d65b4 View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. Configuration menu
    Copy the full SHA
    9e3cd4d View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. Configuration menu
    Copy the full SHA
    c18aedb View commit details
    Browse the repository at this point in the history