Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ammmir committed Feb 2, 2012
1 parent cd9496b commit 8283f84
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions README.md
@@ -1,11 +1,5 @@
# OAuth 2 Provider for Connect & Express # OAuth 2 Provider for Connect & Express


WARNING: If you're using this module via npm, be sure to use a specific
version in your `package.json` since until this module reaches 1.x there
will be breaking changes in both npm and master. Stable releases are
tagged on GitHub, so use those versions to pull down a specific one from
npm.

This is a node.js module for implementing OAuth2 servers (providers) This is a node.js module for implementing OAuth2 servers (providers)
that support server-side (code) and client-side (token) OAuth flows. that support server-side (code) and client-side (token) OAuth flows.


Expand All @@ -14,6 +8,15 @@ OAuth token storage and client lists. In the future, a Mongo or Redis
backed abstraction will be provided so you don't need to care about backed abstraction will be provided so you don't need to care about
any kind of storage at all. any kind of storage at all.


## Using it with npm

If you're using this module via npm, please be sure the bracket the
version in your app's `package.json` file. Major versions may have an
incompatible API that's not backwards-compatible, so use a safe version
range under `dependencies` (eg. for version 1.x):

"oauth2-provider": ">=1.0.0 <2.0.0"

## Quick Start ## Quick Start


Install via npm: Install via npm:
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{ {
"name": "oauth2-provider", "name": "oauth2-provider",
"version": "0.0.2", "version": "1.0.0",
"description": "A simple customizable OAuth 2.0 provider (server) for node.js.", "description": "A simple customizable OAuth 2.0 provider (server) for node.js.",
"homepage": "https://github.com/ammmir/node-oauth2-provider", "homepage": "https://github.com/ammmir/node-oauth2-provider",
"author": { "author": {
Expand Down

0 comments on commit 8283f84

Please sign in to comment.