Skip to content

Commit

Permalink
Fixes node-saml#208, updated readme by updating package names.
Browse files Browse the repository at this point in the history
  • Loading branch information
RopoMen committed Nov 9, 2022
1 parent 3618410 commit 2713904
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ that you found no references in the spec concerning your issue.

** Community development model **

node-saml is maintained by a number of current users. There is no author or primary maintainer
@node-saml/node-saml is maintained by a number of current users. There is no author or primary maintainer
waiting to write your tests and documentation for you. To increase the odds that your issue
is promptly dealt with, consider a pull request to address the issue that includes test coverage
and updated documentation.
Expand All @@ -40,4 +40,4 @@ A clear and concise description of what you expected to happen.
**Environment**

- Node.js version:
- node-saml version:
- @node-saml/node-saml version:
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ that you found no references in the spec concerning your issue.

** Community development model **

node-saml is maintained by a number of current users. There is no author or primary maintainer
@node-saml/node-saml is maintained by a number of current users. There is no author or primary maintainer
waiting to write your tests and documentation for you. To increase the odds that your issue
is promptly dealt with, consider a pull request to address the issue that includes test coverage
and updated documentation.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[![NPM](https://nodei.co/npm/@node-saml/node-saml.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/@node-saml/node-saml)

This is a [SAML 2.0](http://en.wikipedia.org/wiki/SAML_2.0) authentication provider for Node.js. This was forked from `passport-saml` at v3.0.0 and will become the SAML implementation for `passport-saml`. When this is mature, `passport-saml` will have code removed and replaced by a dependency on this library.
This is a [SAML 2.0](http://en.wikipedia.org/wiki/SAML_2.0) authentication provider for Node.js. This was forked from `@node-saml/passport-saml` at v3.0.0 and will become the SAML implementation for `@node-saml/passport-saml`. When this is mature, `@node-saml/passport-saml` will have code removed and replaced by a dependency on this library.

The code was originally based on Michael Bosworth's [express-saml](https://github.com/bozzltron/express-saml) library.

Expand All @@ -20,7 +20,7 @@ For now

Once the first release is done, this will be available at

$ npm install node-saml
$ npm install @node-saml/node-saml

## Usage

Expand All @@ -31,7 +31,7 @@ The examples utilize the [Feide OpenIdp identity provider](https://openidp.feide
The SAML identity provider will redirect you to the URL provided by the `path` configuration.

```javascript
const { SAML } = require("node-saml");
const { SAML } = require("@node-saml/node-saml");

const options = {};
const saml = new SAML(options);
Expand Down

0 comments on commit 2713904

Please sign in to comment.