mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Have `OAuthEncryption.open` throw "decryption unsuccessful" on any
error to avoid allowing an attacker to break the encryption key by
observing the result of sending manipulated ciphertexts.
Add oauth-encryption and the oauthSecretKey config options to the docs
page.
Update history.
More documentation on functions.
Use `OAuth.sealSecret(...)` instead of `{seal: ...}`.
Rename OAuth._openSecret(s) to OAuth.openSecret(s).
In the readme describing how to generate a key, just use Node instead
of going through the hassle of creating a Meteor application.
Have the `oauth` package weakly depend on `oauth-encryption` for when
it's being used without accounts.
Add tips on using oauth-encryption without accounts to the readme.
40 lines
835 B
HTML
40 lines
835 B
HTML
<template name="packages">
|
|
{{#markdown}}
|
|
|
|
<h1 id="packages">Packages</h1>
|
|
|
|
Meteor supports a variety of add-on packages and third party
|
|
libraries. While you can build great applications using only the Meteor
|
|
core functionality, optional packages can make development even faster
|
|
and better.
|
|
|
|
Packages can be added and removed from a Meteor project with:
|
|
|
|
$ meteor add <package_name>
|
|
|
|
and removed with:
|
|
|
|
$ meteor remove <package_name>
|
|
|
|
{{> pkg_accounts_ui}}
|
|
{{> pkg_amplify}}
|
|
{{> pkg_appcache}}
|
|
{{> pkg_audit_argument_checks}}
|
|
{{> pkg_backbone}}
|
|
{{> pkg_bootstrap}}
|
|
{{> pkg_browser_policy}}
|
|
{{> pkg_coffeescript}}
|
|
{{> pkg_d3}}
|
|
{{> pkg_force_ssl}}
|
|
{{> pkg_jquery}}
|
|
{{> pkg_less}}
|
|
{{> pkg_oauth_encryption}}
|
|
{{> pkg_random}}
|
|
{{> pkg_spiderable}}
|
|
{{> pkg_stylus}}
|
|
{{> pkg_showdown}}
|
|
{{> pkg_underscore}}
|
|
|
|
{{/markdown}}
|
|
</template>
|