Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brightspace/node-auth
Collection of packages relating to Brightspace's OAuth2 framework.
https://github.com/brightspace/node-auth
nodejs oauth2
Last synced: 5 days ago
JSON representation
Collection of packages relating to Brightspace's OAuth2 framework.
- Host: GitHub
- URL: https://github.com/brightspace/node-auth
- Owner: Brightspace
- License: apache-2.0
- Created: 2016-03-07T19:15:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-02-12T17:04:05.000Z (9 months ago)
- Last Synced: 2024-10-28T12:55:30.381Z (18 days ago)
- Topics: nodejs, oauth2
- Language: JavaScript
- Homepage:
- Size: 460 KB
- Stars: 0
- Watchers: 61
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# brightspace-auth (monorepo)
[![Build Status](https://travis-ci.org/Brightspace/node-auth.svg?branch=master)](https://travis-ci.org/Brightspace/node-auth)
[![Coverage Status](https://coveralls.io/repos/github/Brightspace/node-auth/badge.svg?branch=master)](https://coveralls.io/github/Brightspace/node-auth?branch=master)This repository is a collection of packages relating to Brightspace's OAuth2 framework.
## Packages
* [brightspace-auth-assertions](packages/node_modules/brightspace-auth-assertions)
* [brightspace-auth-keys](packages/node_modules/brightspace-auth-keys)
* [brightspace-auth-provisioning](packages/node_modules/brightspace-auth-provisioning)
* [brightspace-auth-token](packages/node_modules/brightspace-auth-token)
* [brightspace-auth-validation](packages/node_modules/brightspace-auth-validation)### `AbstractPublicKeyStore` Implementations
* [redis](packages/node_modules/brightspace-auth-keys-redis-store)
* [dynamodb](packages/node_modules/brightspace-auth-keys-dynamodb-store)## Testing
```bash
npm test
```Running `npm test` will lint all packages using the same set of rules. It will
then run the tests of each package one-by-one.## Contributing
1. **Fork** the repository. Committing directly against this repository is
highly discouraged.2. Make your modifications in a branch, updating and writing new unit tests
as necessary.3. Ensure that all tests pass with `npm test`
4. `rebase` your changes against master. *Do not merge*.
5. Submit a pull request to this repository. Wait for tests to run and someone
to chime in.### Dependencies
When installing new dependencies, do so at the top-level. Static analysis of
each package will copy the dependencies to the packages at time of release.### Code Style
This repository is configured with [EditorConfig][EditorConfig] and
[ESLint][ESLint] rules.## Release
When it comes time do a release, update the versions of each package and commit
and tag the changes. A script is available to do this for you:```sh
./bin/set-version-and-commit.sh 4.1.7
```Push the version update and tag to GitHub and travis-ci will take care of
publishing the release:```sh
git push upstream master v4.1.7
```[EditorConfig]: http://editorconfig.org/
[ESLint]: http://eslint.org