https://github.com/davidgilbertson/just-js
Experiments in vanilla JS bits and pieces
https://github.com/davidgilbertson/just-js
Last synced: 3 months ago
JSON representation
Experiments in vanilla JS bits and pieces
- Host: GitHub
- URL: https://github.com/davidgilbertson/just-js
- Owner: davidgilbertson
- License: mit
- Created: 2015-11-21T21:32:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-10T21:06:03.000Z (over 9 years ago)
- Last Synced: 2025-02-13T21:17:00.989Z (5 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# just-js
Experiments in vanilla JS bits and pieces## Faux-React
At the moment this is an experiment to replicate the logic of react components.
Assumptions
* The only component is a user input (`` or ``)
* Each component is (two-way) bound to a value in the store
* Each component knows if it is valid or not
* This is only really suited to a flat list of components (such as in the form).
Building any structure would be a pain.