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
varbanner="######################################################################"+"# Welcome to joescrabshack.com #"+"# #"+"# All connections are monitored and recorded #"+"# Disconnect IMMEDIATELY if you are not an authorized user #"+"######################################################################";vantage.delimiter('appsvr:3000~$').banner(banner).listen(3000);
However this means that the context can only be when the banner was registered.
Then the banner could be changed depending on the app state, or environment state. Some benefiting examples
process.stdout.columns could be inspected to hide/resize wide banners (this currently only works if the same size shell as what booted the app in the first place is used)
status of the running application could be returned, maybe a list of the last X exceptions
Notifications that migrations need to be run
etc
The text was updated successfully, but these errors were encountered:
Currently, the banner is assigned on boot:
However this means that the context can only be when the banner was registered.
Instead, if the api could accept a banner, ie
Then the banner could be changed depending on the app state, or environment state. Some benefiting examples
etc
The text was updated successfully, but these errors were encountered: