You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be helpful to describe possible migrations paths.
One idea:
constexpress=require('express')constHuncwot=require('huncwot')constapp1=express()constapp2=newHuncwot()app1.get('/',()=>/* proxy to app2 here */)app2.get('/',()=>'foo')app1.listen(3333)app2.listen(3334)
Not ideal for performance for sure, but it should make it easier to migrate apps step by step
The text was updated successfully, but these errors were encountered:
Context
It'd be helpful to describe possible migrations paths.
One idea:
Not ideal for performance for sure, but it should make it easier to migrate apps step by step
The text was updated successfully, but these errors were encountered: