React's new Context Api for preact
npm install preact-contextcreateContext for preact


This is an implementation of react's [new context api][rfcs]. You can read more
about it on [react's documentation][react-context-doc] page.
This package provides the createContext factory function that can be used
in order to create a context:
``js
import { h } from "preact";
import { createContext } from "preact-context";
const Theme = createContext("dark");
`
The returned object contains two components: a Provider and a Consumer.
It can be used in order to consume the provided object:
` Selected theme: {theme}jsx`
Alternatively, it can also be used with a render property:
` Selected theme: {theme}jsx`
can be used in order to update the value of a context:
`jsx`
will change "dark" to "sunny" and notify all it's consumers of the change.
This project has been written with [typescript][typescript].
The watch script will watch for changes, compile and run the tests.
```
$ npm i
$ npm run watch
Licensed under the Apache License, Version 2.0
Cross-browser Testing Platform and Open Source <3 Provided by [Sauce Labs][saucelabs]
[rfcs]: https://github.com/acdlite/rfcs/blob/new-version-of-context/text/0000-new-version-of-context.md
[react-context-doc]: https://reactjs.org/docs/context.html
[typescript]: https://www.typescriptlang.org/
[saucelabs]: https://saucelabs.com