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
{{ message }}
This repository was archived by the owner on Feb 13, 2021. It is now read-only.
For phpinfo php modules can export data to be shown in this page.
We should look into the best way that an app or other modules can export data to be displayed here.
Examples:
database connections
disk status
network status
etc
My initial thought on this would be:
//node-infoprocess.on('node-info',function(data){//store the data//needs to be a defined Object//maybe add a db cache here (memcache, etc)});//the appprocess.emit('node-info',function(){return{{//my data }};});