Rotem Dan
Rotem Dan
I've made some major changes, especially to generalize the terminology: 1. `Flexible content descriptor` -> `Universal container format` 2. `CID` -> `Container` 3. `Protocol` -> `Entity domain` 4. `Required fields`...
This is an idea I suggested several years ago with the purpose of potentially unifying content identifiers and IPLD documents. Basically having one highly flexible data format that could describe...
**lz-utf8** was mostly designed and developed in the summer of 2014, before asm.js (introduced in 2013) and the later WebAssembly (introduced in 2017) were widely supported by browsers. Back then...
The library does include an `lzutf8.d.ts` declaration file, but it doesn't have any dependency called `lzwcompress`. Maybe this message is related to another library?
This seems like an import error of some sort (by Angular?) Does this solution help? [Resolving Angular Default Import Errors](https://fireflysemantics.medium.com/resolving-angular-default-import-errors-cf0b1e22fbab) It recommends that instead of: ```ts import v1 from "uuid/v1";...
What is the statement used to import the library? (for example something like `import * as lzutf8 from "lzutf8"`..?)
Alright, you can leave this issue open. I'm not sure if having no default export was an intentional decision, or was chosen for some sort of compatibility reason with CommonJS...
CAn't build with Angular: Can't resolve 'stream' in ./node_modules/lzutf8/build/production/lzutf8.js
Hi, "stream" is built-in part of the Node.js standard library (not an external package): https://nodejs.org/api/stream.html It is dynamically imported when needed (only when a particular method is called and when...
CAn't build with Angular: Can't resolve 'stream' in ./node_modules/lzutf8/build/production/lzutf8.js
Thanks for the PR. I'm still a bit confused why referencing node's own `stream` module has become so problematic. I guess that back when the library was initially written (2014)...
CAn't build with Angular: Can't resolve 'stream' in ./node_modules/lzutf8/build/production/lzutf8.js
@ispyinternet I have published the PR to a minor version (`0.5.8`). This may have been a mistake since adding the new dependency could be seen as a breaking change. I've...