Effector
Reactive state manager
README
☄️ effector
Business logic with ease
Visit effector.dev for docs, guides and examples
Table of Contents
- Packages
- Articles
- DevTools
Introduction
Effector implements business logic with ease for Javascript apps (React/React Native/Vue/Svelte/Node.js/Vanilla), allows you to manage data flow in complex applications. Effector provides best TypeScript support _out of the box_.
Effector follows five basic principles:
- Application stores should be as light as possible - the idea of adding a store for specific needs should not be frightening or damaging to the developer.
- Application stores should be freely combined - data that the application needs can be statically distributed, showing how it will be converted in runtime.
- Autonomy from controversial concepts - no decorators, no need to use classes or proxies - this is not required to control the state of the application and therefore the api library uses only functions and plain js objects
- Predictability and clarity of API - a small number of basic principles are reused in different cases, reducing the user's workload and increasing recognition. For example, if you know how .watch works for events, you already know how .watch works for stores.
- The application is built from simple elements - space and way to take any required business logic out of the view, maximizing the simplicity of the components.
Installation
with pnpm
- ```sh
- pnpm add effector
- ```
with yarn
- ```sh
- yarn add effector
- ```
with npm
- ```sh
- npm add effector
- ```
React
To getting started read our article how to write React and Typescript application.
with pnpm
- ```sh
- pnpm add effector effector-react
- ```
with yarn
- ```sh
- yarn add effector effector-react
- ```
with npm
- ```sh
- npm add effector effector-react
- ```
Vue
with pnpm
- ```sh
- pnpm add effector effector-vue
- ```
with yarn
- ```sh
- yarn add effector effector-vue
- ```
with npm
- ```sh
- npm add effector effector-vue
- ```
Svelte
Svelte works with effector out of the box, no additional packages needed. See word chain game application written with svelte and effector.
CDN
- https://www.jsdelivr.com/package/npm/effector
- https://cdn.jsdelivr.net/npm/effector/effector.cjs.js
- https://cdn.jsdelivr.net/npm/effector/effector.mjs
- https://cdn.jsdelivr.net/npm/effector-react/effector-react.cjs.js
- https://cdn.jsdelivr.net/npm/effector-vue/effector-vue.cjs.js
Documentation
For additional information, guides and api reference visit our documentation site
Packages
- effector
Articles
Community
- awesome-effector a curated list of awesome effector packages, videos and articles
- Twitter
- Telegram (@effector_en)
- Telegram 🇷🇺 (@effector_ru)
- dev.to
- Gitter
- Discord
- Add a [GitHub Topic effector](https://github.com/topics/effector) to your project's home page
Online playground
You can try effector with online playground
Code sharing, Typescript and react supported out of the box. Playground repository
DevTools
Use effector-logger for printing updates to console, displaying current store values with ui or connecting application to familiar redux devtools
More examples in documentation
Learn more
- Glossary
- API docs
Support us
- Read more articles on a patreon page
- Donate on OpenCollective
- Be a sponsor on Github Sponsors
Your support allows us to improve the developer experience 🧡.