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
need to be able to call the node apps from web apps using some sort of bridge...
Building appInfo is buggy. For example if you import gloss and call it in the entry you'll get an undefined error. Short term solution: @o/nully which basically acts as "anything" just trying to avoid errors. We replace all imports with nully, so import { gloss } from @o/gloss becomes const x = require('@o/nully').gloss where nully = new Proxy() and the proxy just endlessly returns the most flexible thing (a proxy-wrapped function basically that infinitely proxy-nests).
The text was updated successfully, but these errors were encountered:
@o/nully
which basically acts as "anything" just trying to avoid errors. We replace all imports with nully, soimport { gloss } from @o/gloss
becomesconst x = require('@o/nully').gloss
wherenully = new Proxy()
and the proxy just endlessly returns the most flexible thing (a proxy-wrapped function basically that infinitely proxy-nests).The text was updated successfully, but these errors were encountered: