gustwind
gustwind copied to clipboard
🐳💨 – Deno powered site creator
This should help with the performance further because: 1. Doing this allows reusing parent `dataSources` 2. It defers indexing (more work to be done at workers) 3. Avoids having to...
Since there are `data-id`s per component already, likely this should be quite simple addition. Reference: https://github.com/infi-pc/locatorjs
Use case: ```json { "type": "SiteLink", "attributes": { "aria-label": "Read more about Seminole tax hike" }, "props": { "children": "Buy tickets", "href": "https://ti.to/future-frontend/2023" } } ``` There are times when...
grapesjs has a powerful client-side editor and it may be worth studying in detail to understand how to expand the existing editor.
As shown by https://deno.com/blog/v1.38, using string concatenation has performance benefits. Porting breezewind to use the same idea may be worth a go if performance becomes an issue.
The idea would be to consume data (for example https://github.com/ReactFinland/graphql-api) and then generate JSON files as a static API. This would need a custom renderer plugin and some logic on...
The development server should restart if the project plugin definition changes. Now it's using a static lookup which is enough for most use cases as the definition doesn't change often.
The idea would be to check an earlier compilation (hash against the JSON files?) and avoid compilation when possible. The current design already allows this but extra logic is needed.
http://jsonpatch.com/