├── .babelrc ├── .gitignore ├── .npmignore ├── .nycrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── assets ├── flame-no-connection.png ├── flame-no-connection.svg ├── logo.png ├── logo.pxm └── social.png ├── examples └── example-form.md ├── lib ├── core.js ├── hooks.js ├── index.js └── service.js ├── package.json ├── test ├── test-create-machine.js └── test-use-machine.js └── types ├── index.d.ts ├── index.test.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs 2 | test 3 | tasks 4 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/README.md -------------------------------------------------------------------------------- /assets/flame-no-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/assets/flame-no-connection.png -------------------------------------------------------------------------------- /assets/flame-no-connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/assets/flame-no-connection.svg -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/assets/logo.pxm -------------------------------------------------------------------------------- /assets/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/assets/social.png -------------------------------------------------------------------------------- /examples/example-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/examples/example-form.md -------------------------------------------------------------------------------- /lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/lib/core.js -------------------------------------------------------------------------------- /lib/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/lib/hooks.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/lib/service.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/package.json -------------------------------------------------------------------------------- /test/test-create-machine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/test/test-create-machine.js -------------------------------------------------------------------------------- /test/test-use-machine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/test/test-use-machine.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/types/index.test.ts -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humaans/react-machine/HEAD/types/tsconfig.json --------------------------------------------------------------------------------