Attempts to make it much easier to setup GraphQL servers with Auth0 (and other Auth providers) via GraphQL clients, such as:
Designed specifically for GraphCool (SaaS) server but well suited for any other GraphQL server.
See the docs for each of the modules included for more details including installation and usage.
Looks like lerna is broken with npm 5. Please use Node 7.x and npm 4.x
npm install --save-dev [email protected]
Set npmClient
to node_modules/.bin/npm
in your lerna.json
Recommended global npm binaries/utils:
- lerna - mono repo package manager
- ava - futuristic test runner (promises/parallel)
- nyc - Istanbul test coverage
- webpack - Babel compiler/loader
- ncu - check npm module updates
- now - simple micro services
npm -g lerna ava nyc webpack ncu now
This project consists of the following modules:
@tecla5/token-foundation
@tecla5/gql-conn
@tecla5/apollo-auth-conn
@tecla5/lokka-auth-conn
@tecla5/gql-auth
@tecla5/easy-auth0-lock
@tecla5/easy-gql-auth0
And the following demo apps:
feathers-app
jquery-app
react-app
vue-app
Quick client app auth config:
app-auth
Each of the apps demonstrate how to configure using both AppAuth
from the app-auth
package and custom config directly using the APIs of relevant packages such as easy-auth0-lock
etc.
@tecla5/token-foundation
- token storage and common utilities
@tecla5/gql-conn
- GraphQL server connection config and token store@tecla5/apollo-auth-conn
- GraphQL server connection via Apollo (built ongql-conn
)@tecla5/lokka-auth-conn
- GraphQL server connection via Lokka (built ongql-conn
)
Each GraphQL connection should have the capability to:
- perform GraphQL queries via
async doQuery(query)
- add JWT token to connection via
setJWTtoken(signinToken)
@tecla5/gql-auth
- GraphQL authentication
@tecla5/easy-auth0-lock
- Efficient setup of GraphQL authentication with Auth0 Lock
easy-gql-auth0
is designed to work well with auth0 but can be configuted to support alternative auth providers
easy-auth0-lock
can be made to work with various Auth0 authentication systems beyond Lock, including passwordless with magic link email or sms.
@tecla5/easy-gql-auth0
- Efficient setup of full Auth0 and GraphQL authentication flow
Notably a setup
method is included which should facilitate full setup of all the pieces for a full 2-phase Auth provider signin and GraphQL signin flow with all the "bells and whistles".
jquery-app
react-app
vue-app
The demo apps serve to illustrate how to leverage the easy-auth0-lock
lib so easily, that there is very little difference in the setup, as the library has been designed to be completely self-contained and makes no assumptions on the consumer. Example can be found below.
Please add a demo app for your framework of choice ;)
A typical configuration could look as follows:
import {
createGraphQLAuth
} from '@tecla5/gql-auth'
import ApolloClient, {
createNetworkInterface
} from 'apollo-client'
import {
createConnection
} from '@tecla5/apollo-auth-conn'
const client = {
ApolloClient,
createNetworkInterface,
createConnection,
}
import Auth0Lock from 'auth0-lock'
import {
setup,
createStore,
createLock
} from '@tecla5/easy-auth0-lock'
const lockConfig = {
Auth0Lock,
createLock
}
import config from './config'
export default setup(config, {
createGraphQLAuth, // adds graphQL auth
createStore,
client,
lockConfig,
})
Using easy-gql-auth0
we can achieve the same with a somewhat simpler configuration, using conventions:
import ApolloClient, {
createNetworkInterface
} from 'apollo-client'
import {
createConnection
} from '@tecla5/apollo-auth-conn'
let client = {
ApolloClient,
createNetworkInterface,
createConnection
}
import {
createLock
} from 'easy-gql-auth0'
import config from './config'
let lock = createLock(config, {
client
})
A typical user session component with signin & logout
class SessionComponent extends Component {
constructor(props) {
super(props);
this.state = {
isLoggedIn: false
};
lock.on('signedIn', this.loggedIn)
lock.on('loggedOut', this.loggedOut)
}
loggedOut() {
this.setState({
isLoggedIn: false,
profile: {}
})
// hide logout button
}
signedIn({
profile
}) {
this.setState({
isLoggedIn: true,
profile,
})
// hide login button
}
doLogin() {
lock
.showLock()
.subscribeAuthenticated()
}
doLogout() {
lock
.logout()
}
// ...
// have the component render trigger doLogin and doLogout
}
On Auth0 university watch:
On GraphCool youtube channel, watch the first 2 minutes of GraphCool User Authentication with Auth0 for React and Apollo which demonstrates how to create an Auth0 client app and configure a GraphCool app for Auth0 integration.
Now you should be good to go!
This is a lerna project. So simply bootstrap.
$ lerna bootstrap
And you will be good to go!
Build all modules (or use with lerna --scope
)
$ lerna run build:dev
- for dev$ lerna run build:prod
- for prod (minified)
Only for specific module via --scope
$ lerna run build:prod --scope @tecla5/token-foundation
In local module/project
$ npm run build:dev
- for dev$ npm run build:prod
- for prod (minified)
$ lerna run test
In local module/project
$ npm test
Run specific test
$ ava test/auth.test.js
See Ava Code coverage recipe
Install NYC globally
npm i -g nyc
$ lerna publish
These auth libs can be used in combination with the recently updated tutorial project micro-stripe-example for payments.
Coming soon: Stripe subscription payments integration (separate project)
The goal is to supply efficient infrastructure to build the core functionality for most sites:
- user signup
- payment (including subscriptions)
Stay tuned...
MIT - Tecla5 2017, Kristian Mandrup