Skip to content

facebook/relay

main
Switch branches/tags
Code

Latest commit

…4023)

Summary:
flow check is failing on this repo right now

```
yarn run v1.22.19
$ flow check
Error --------------------------------------- node_modules/resolve/test/resolver/malformed_package_json/package.json:2:1
Unexpected end of input, expected the token `}`
   2|
Found 1 error
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Error: Process completed with exit code 2.
```

I wish facebook/flow#2364 was addressed that I didn't have to do this :(

Pull Request resolved: #4023

Test Plan:
Imported from GitHub, without a `Test Plan:` line.

**Static Docs Preview: relay**
|[Full Site](https://our.intern.facebook.com/intern/staticdocs/eph/D38072807/V2/relay/)|

|**Modified Pages**|

Reviewed By: alunyov

Differential Revision: D38072807

Pulled By: voideanvalue

fbshipit-source-id: 0190e69a7fd61fa1ce3bcd73c57435ba14466235
df182d7

Git stats

Files

Permalink
Failed to load latest commit information.

Relay · GitHub license npm version

Relay is a JavaScript framework for building data-driven React applications.

  • Declarative: Never again communicate with your data store using an imperative API. Simply declare your data requirements using GraphQL and let Relay figure out how and when to fetch your data.
  • Colocation: Queries live next to the views that rely on them, so you can easily reason about your app. Relay aggregates queries into efficient network requests to fetch only what you need.
  • Mutations: Relay lets you mutate data on the client and server using GraphQL mutations, and offers automatic data consistency, optimistic updates, and error handling.

See how to use Relay in your own project.

Example

The relay-examples repository contains an implementation of TodoMVC. To try it out:

git clone https://github.com/relayjs/relay-examples.git
cd relay-examples/todo
yarn
yarn build
yarn start

Then, just point your browser at http://localhost:3000.

Contribute

We actively welcome pull requests, learn how to contribute.

Users

We have a community-maintained list of people and projects using Relay in production.

License

Relay is MIT licensed.

Thanks

We'd like to thank the contributors that helped make Relay in open source possible.

The open source project relay-hooks allowed the community to experiment with Relay and React Hooks, and was a source of valuable feedback for us. The idea for the useSubscription hook originated in an issue on that repo. Thank you @morrys for driving this project and for playing such an important role in our open source community.

Thank you for helping make this possible!