Skip to content

Commit 6da8984

Browse files
authored
Merge pull request #1 from node-oauth/feature.4.0.0
v4.0.0 initial release
2 parents 6d4c987 + aba6a3e commit 6da8984

File tree

4 files changed

+12
-773
lines changed

4 files changed

+12
-773
lines changed

Diff for: .travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: node_js
22

33
node_js:
4-
- 4
54
- 6
65
- 8
76
- 10

Diff for: README.md

+5-24
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
11

2-
# oauth2-server
3-
4-
[![npm Version][npm-image]][npm-url]
5-
[![npm Downloads][downloads-image]][downloads-url]
6-
[![Test Status][travis-image]][travis-url]
7-
[![MIT Licensed][license-image]][license-url]
8-
[![oauthjs Slack][slack-image]][slack-url]
2+
# @node-oauth/oauth2-server
93

104
Complete, compliant and well tested module for implementing an OAuth2 server in [Node.js](https://nodejs.org).
115

12-
Note: After a period of hiatus, this project is now back under active maintenance. Dependencies have been updated and bug fixes will land in v3 (current master). v4 will be _mostly backwards compatible_ with no code changes required for users using a supported node release. More details in [#621](https://github.com/oauthjs/node-oauth2-server/issues/621).
6+
NOTE: This project has been forked from [oauthjs/node-oauth2-server](https://github.com/oauthjs/node-oauth2-server) and is a continuition due to the project appearing to be abandoned. Please see [this issue](https://github.com/node-oauth/node-oauth2-server/issues/2) to talk about next steps and the future of this project.
137

148
## Installation
159

1610
```bash
17-
npm install oauth2-server
11+
npm install @node-oauth/oauth2-server
1812
```
1913

20-
The *oauth2-server* module is framework-agnostic but there are several officially supported wrappers available for popular HTTP server frameworks such as [Express](https://npmjs.org/package/express-oauth-server) and [Koa](https://npmjs.org/package/koa-oauth-server). If you're using one of those frameworks it is strongly recommended to use the respective wrapper module instead of rolling your own.
14+
The *@node-oauth/oauth2-server* module is framework-agnostic but there are several officially supported wrappers available for popular HTTP server frameworks such as [Express](https://npmjs.org/package/express-oauth-server) and [Koa](https://npmjs.org/package/koa-oauth-server). If you're using one of those frameworks it is strongly recommended to use the respective wrapper module instead of rolling your own.
2115

2216

2317
## Features
@@ -26,7 +20,7 @@ The *oauth2-server* module is framework-agnostic but there are several officiall
2620
- Can be used with *promises*, *Node-style callbacks*, *ES6 generators* and *async*/*await* (using [Babel](https://babeljs.io)).
2721
- Fully [RFC 6749](https://tools.ietf.org/html/rfc6749.html) and [RFC 6750](https://tools.ietf.org/html/rfc6750.html) compliant.
2822
- Implicitly supports any form of storage, e.g. *PostgreSQL*, *MySQL*, *MongoDB*, *Redis*, etc.
29-
- Complete [test suite](https://github.com/oauthjs/node-oauth2-server/tree/master/test).
23+
- Complete [test suite](https://github.com/node-oauth/node-oauth2-server/tree/master/test).
3024

3125

3226
## Documentation
@@ -55,16 +49,3 @@ To run the test suite, install dependencies, then run `npm test`:
5549
npm install
5650
npm test
5751
```
58-
59-
60-
[npm-image]: https://img.shields.io/npm/v/oauth2-server.svg
61-
[npm-url]: https://npmjs.org/package/oauth2-server
62-
[downloads-image]: https://img.shields.io/npm/dm/oauth2-server.svg
63-
[downloads-url]: https://npmjs.org/package/oauth2-server
64-
[travis-image]: https://img.shields.io/travis/oauthjs/node-oauth2-server/master.svg
65-
[travis-url]: https://travis-ci.org/oauthjs/node-oauth2-server
66-
[license-image]: https://img.shields.io/badge/license-MIT-blue.svg
67-
[license-url]: https://raw.githubusercontent.com/oauthjs/node-oauth2-server/master/LICENSE
68-
[slack-image]: https://slack.oauthjs.org/badge.svg
69-
[slack-url]: https://slack.oauthjs.org
70-

0 commit comments

Comments
 (0)