joystick
joystick copied to clipboard
A full-stack JavaScript framework for building stable, easy-to-maintain apps and websites.
This should be a named export. Testing out the new escape stuff and found a spot where it'd be helpful to have access to `escapeHTML()` so it could be called...
I don't know the answer but just came across this trying to answer a different question and it may help with either shrinking the usage of or need for a...
Need to document a pre-production security checklist: - [ ] Utilize CSP (Content-Security-Policy) - [ ] Utilize the `sanitize` option on getters and setters. - [ ] Utilize (but be...
These form validation rules should behave the same. ``` const booleanValue = false 'expire-at': { ...(booleanValue ? { required: true } : {})) }, ``` and ``` const booleanValue =...
This is just a gotcha of HTML. On re-render, we regenerate the HTML for all elements in a component. By default, an HTML input will not retain its value because...
This might be a chunky one but could be kind of cool. Was just looking at a webp image that was massive but had a tiny footprint. Would be nice...
Give developers an easy way to set a cache policy for routes. A policy could global or local. A policy would be an expires at timestamp with conditions/exceptions for enforcement....
Oh boy, BUZZWORDS. In all seriousness, though, I _think_ they're might be a way to eek out some performance at render time by taking a lot of the tree looping...
This has come up more than once. Because Joystick's rendering is isomorphic, if a third-party dependency has a browser-only dependency internally (e.g., `navigator`) it can trigger build errors. The fix...
I'm still on the fence about doing this, but my gut is telling me it's right. As time passes, I'm finding a lot of different use cases for Joystick, each...