- Notifications
You must be signed in to change notification settings - Fork486
The Open Source Firebase Alternative with GraphQL.
License
nhost/nhost
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Nhost is an open source Firebase alternative with GraphQL, built with the following things in mind:
- Open Source
- GraphQL
- SQL
- Great Developer Experience
Nhost consists of open source software:
- Database:PostgreSQL
- Instant GraphQL API:Hasura
- Authentication:Hasura Auth
- Storage:Hasura Storage
- Serverless Functions: Node.js (JavaScript and TypeScript)
- Nhost CLI for local development
Visithttps://docs.nhost.io for the complete documentation.
- Sign in toNhost.
- Create Nhost app.
- Done.
Since Nhost is 100% open source, you can self-host the whole Nhost stack. Check out the exampledocker-compose file to self-host Nhost.
Install the@nhost/nhost-js
package and start build your app:
import{NhostClient}from'@nhost/nhost-js'constnhost=newNhostClient({subdomain:'<your-subdomain>',region:'<your-region>'})awaitnhost.auth.signIn({email:'user@domain.com',password:'userPassword'})awaitnhost.graphql.request(`{ users { id displayName email }}`)
Nhost is frontend agnostic, which means Nhost works with all frontend frameworks.
- Start developing locally with theNhost CLI
First and foremost:Star and watch this repository to stay up-to-date.
Also, follow Nhost onGitHub Discussions, ourBlog, and onTwitter. You can chat with the team and other members onDiscord and follow our tutorials and other video material atYouTube.
This repository, and most of our other open source projects, are licensed under the MIT license.
Here are some ways of contributing to making Nhost better:
- Try out Nhost, and think of ways to make the service better. Let us know here on GitHub.
- Join ourDiscord and connect with other members to share and learn from.
- Send a pull request to any of ouropen source repositories on Github. Check ourcontribution guide and ourdevelopers guide for more details about how to contribute. We're looking forward to your contribution!
About
The Open Source Firebase Alternative with GraphQL.