Skip to content

Commit 3c9d7a6

Browse files
committed
Version 4 with readme, package.json and travis.yml updates
1 parent 6d4c987 commit 3c9d7a6

File tree

4 files changed

+17
-765
lines changed

4 files changed

+17
-765
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
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

README.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11

2-
# oauth2-server
2+
# oauth2-server2
33

44
[![npm Version][npm-image]][npm-url]
55
[![npm Downloads][downloads-image]][downloads-url]
6-
[![Test Status][travis-image]][travis-url]
76
[![MIT Licensed][license-image]][license-url]
8-
[![oauthjs Slack][slack-image]][slack-url]
97

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

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).
10+
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/1) to talk about next steps and the future of this project.
1311

1412
## Installation
1513

1614
```bash
17-
npm install oauth2-server
15+
npm install oauth2-server2
1816
```
1917

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.
18+
The *oauth2-server2* 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.
2119

2220

2321
## Features
@@ -26,7 +24,7 @@ The *oauth2-server* module is framework-agnostic but there are several officiall
2624
- Can be used with *promises*, *Node-style callbacks*, *ES6 generators* and *async*/*await* (using [Babel](https://babeljs.io)).
2725
- Fully [RFC 6749](https://tools.ietf.org/html/rfc6749.html) and [RFC 6750](https://tools.ietf.org/html/rfc6750.html) compliant.
2826
- 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).
27+
- Complete [test suite](https://github.com/node-oauth/node-oauth2-server/tree/master/test).
3028

3129

3230
## Documentation
@@ -57,14 +55,10 @@ npm test
5755
```
5856

5957

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
58+
[npm-image]: https://img.shields.io/npm/v/oauth2-server2.svg
59+
[npm-url]: https://npmjs.org/package/oauth2-server2
60+
[downloads-image]: https://img.shields.io/npm/dm/oauth2-server2.svg
61+
[downloads-url]: https://npmjs.org/package/oauth2-server2
6662
[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
63+
[license-url]: https://raw.githubusercontent.com/node-oauth/node-oauth2-server/master/LICENSE
7064

0 commit comments

Comments
 (0)