Tanjiqur Rahman Prince
Results
2
comments of
Tanjiqur Rahman Prince
If you have the user's username and password, you can authenticate first using **GunUser.auth(username, password)** And then get or put on that user's node using **GunUser.get** or **GunUser.put**. In short,...
@fitouch You can try adding a wait option as the second parameter of load like this: ```diff - gun.user().get("messages").load(messages => console.log(messages)); + gun.user().get("messages").load(messages => console.log(messages), {wait: timeInMilliseconds}); ``` Try to...