Logan Volkers
Logan Volkers
[JSONata](https://jsonata.org/) is a lightweight query and transformation language for JSON data. ```js import jsonata from "jsonata"; const code = "$sum(example.value)"; const ast = jsonata(code).ast(); ```
I'm writing an application where a parent would initiate connections with several children on the same page: ``` new Postmate({ ... }).then(child1 => { child1.on('some-event', data => console.log("Message from Child...
The readme contains some promises about making sure that `unstated-next` fulfills all the needs of `unstated` users and that there is a clean migration path. In reality we found that...
I found an issue where using `forceUpdate` to update a component fails when the component has no `Prop` and `State` meta. I have documented a similar issue with `stencil-hooks` here:...
JSON Web Signature (JWS) represents the payload of a JWS as base64url-encoded value and uses this value in the JWS Signature computation. While this enables arbitrary payloads to be integrity...
The current implementation won't parse `` tags correctly. This is because `` tags use `node.content.childNodes` instead of `node.childNodes` for tracking their children. Related line: https://github.com/remarkablemark/html-dom-parser/blob/master/lib/client/utilities.js#L86
I noticed that your preview canvas doesn't include the `sandbox` attribute. This would introduce Cross-Site Scripting (XSS) vulnerabilities. A malicious web component would be able to make requests as the...
**Is your feature request related to a problem? Please describe.** React hook form has shown that direct DOM manipulation works in place of the classic react controlled component pattern. **Describe...
Both standard components (e.g. `table`, `tr`, `td`, `dl`, `dd`) and web components (e.g. `tab-panels`, `tab-panel`) have implicit constraints on what elements are allowed as children, and also what are allowed...
Ran into a bug while using @saasquatch/stencilbook -- the component renders in dev mode, but when built for production the component will not re-render when state changes. Upon deeper investigation...