Miroslav Bajtoš

Results 100 issues of Miroslav Bajtoš

Allow people running `zinnia` and `zinniad` to provide V8 flags e.g. to customise garbage-collector configuration. Quoting from `deno run --help`: ``` --v8-flags= To see a list of all available flags...

Allow module authors to debug their code using Chrome Dev Tools, take memory snapshots, and compare their differences.

When making two subsequent `fetch('ipfs://')` requests for the same content, Zinnia/Lassie must not cache the content. The second request must retrieve all content from the storage provider; none of the...

It would be nice to add a suffix to the version reported by `zinnia` and `zinniad` when these binaries were not built by our release CI workflow. For example, `0.11.0`...

This is a follow-up for https://github.com/filecoin-station/zinnia/pull/243, see also https://github.com/filecoin-station/roadmap/issues/19 Lassie supports only one response format: CAR file. We should enable modules to work with the data stored inside this CAR...

Add a new CLI command `zinnia test` for running the tests. **Examples to consider** Run all tests in the current project: ```bash ❯ zinnia test ``` Run all tests in...

feature
modules:javascript

Our testing framework should handle tests running for too long and abort them. When this happens, we should also exit the process after all test finished (or timed out), to...

feature
modules:javascript

In https://github.com/filecoin-station/zinnia/issues/43, we added support for loading JavaScript modules from local files. The next step is to allow Zinnia modules to use 3rd-party dependencies like npm packages or Deno modules.

feature
modules:javascript

This is a follow-up to the discussion in https://github.com/filecoin-station/zinnia/pull/198#discussion_r1182692965. We should move the code writing state updates to the state file off the main thread to avoid blocking the event...

Allow modules to persist data on the disk. We must take into account how much space is available on the host's disk and ensure we leave some free space for...

feature