Google News
logo
Meteor.js - Interview Questions
What is session and how session can be created in Meteor?
Session is used to save data while app is in use. The session data will be deleted while user leaves the app. In Meteor session are created by using Session.set() method. Once the session data is set, it can return using Session.get() method.
Advertisement