nhost

The Open Source Firebase Alternative with GraphQL.

MIT License

Downloads
67.3K
Stars
7.9K
Committers
89

Bot releases are visible (Hide)

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

  • 78404102: Added the possibility to decide if the GraphiQL editor should be active or not.

    Example where the GraphiQL editor is not active:

    const server = createStripeGraphQLServer({
      graphiql: false
    })
    
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Minor Changes

  • 739a3c45: Sign up with an email and a security key.

    const { error, session } = await nhost.auth.signUp({
      email: '[email protected]',
      securityKey: true
    })
    
    if (error) {
      console.log(error)
    } else if (session) {
      console.log(session.user)
    } else {
      console.log(
        'You need to verify your email address by clicking the link in the email we sent you.'
      )
    }
    

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Minor Changes

  • 739a3c45: Sign up with an email and a security key.

    Use the hook useSignUpEmailSecurityKey to sign up a user with security key and an email using the WebAuthn API.

    const {
      signUpEmailSecurityKey,
      needsEmailVerification,
      isLoading,
      isSuccess,
      isError,
      error
    } = useSignUpEmailSecurityKey()
    
    console.log({ needsEmailVerification, isLoading, isSuccess, isError, error })
    
    const handleFormSubmit = async (e) => {
      e.preventDefault()
      await signUpEmailSecurityKey('[email protected]')
    }
    

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

  • 9eb78e06: Add workos social provider
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes

  • a47ce291: Add options to nhost.auth.signIn({ email, options })
nhost - @nhost/[email protected]

Published by github-actions[bot] about 2 years ago

Patch Changes