mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
* accounts-base: client-side login hooks
* accounts-password: emailTemplates features
* autoupdate: reload via Node IPC messages (and SIGHUP)
* blaze: template-level subscriptions and onRendered/etc hooks
* ddp: client-side onStop callback, permessage-deflate, subscriptionId
on subscription handles
* http: npmRequestOptions, HTTPInternals.NpmModules
* mongo: validated against 2.6, oplog-backlog,
rawCollection/rawDatabase, MongoInternals.NpmModules
* reactive-dict/session: Session.set({k1: v1, k2: v2})
* templating: attributes on <body>
* webapp: WebAppInternals.NpmModules
session
This package provide Session. Session is a special
ReactiveDict whose
contents are preserved across Hot Code Push. It's usually used to
store the current state of the user interface, for example, the
currently selected row in a table, ora flag indicating if a dialog box
is open.
Full documentation of Session can be found on the main Meteor docs
page.
Future work
Unify with reactive-dict.