diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 0c665d80..5b1eeb1e 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -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. @@ -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: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index d0be65a4..6419b878 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -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. diff --git a/README.md b/README.md index 234eb8c7..fa4e0ffb 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 @@ -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);